public enum CustomFieldError extends Enum<CustomFieldError>
| Enum Constant and Description |
|---|
MANDATORY_CUF |
MAX_SIZE |
UNKNOWN_CUF_TYPE |
UNPARSABLE_CHECKBOX |
UNPARSABLE_DATE |
UNPARSABLE_NUMBER |
UNPARSABLE_OPTION |
| Modifier and Type | Method and Description |
|---|---|
abstract String |
getCreateImpact() |
abstract String |
getErrorMessage() |
abstract String |
getUpdateImpact() |
static void |
updateValue(Map<String,String> cufs,
org.squashtest.tm.domain.customfield.CustomField cuf,
String value,
String impact) |
static CustomFieldError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomFieldError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomFieldError MAX_SIZE
public static final CustomFieldError MANDATORY_CUF
public static final CustomFieldError UNPARSABLE_CHECKBOX
public static final CustomFieldError UNPARSABLE_DATE
public static final CustomFieldError UNPARSABLE_OPTION
public static final CustomFieldError UNKNOWN_CUF_TYPE
public static final CustomFieldError UNPARSABLE_NUMBER
public static CustomFieldError[] values()
for (CustomFieldError c : CustomFieldError.values()) System.out.println(c);
public static CustomFieldError valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic abstract String getErrorMessage()
public abstract String getCreateImpact()
public abstract String getUpdateImpact()
Copyright © 2010–2017 Henix, henix.fr. All rights reserved.