public enum CustomFieldValueType extends java.lang.Enum<CustomFieldValueType>
| Enum Constant and Description |
|---|
BOOLEAN |
DATE |
INTEGER |
NOT_SET |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static CustomFieldValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomFieldValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomFieldValueType NOT_SET
public static final CustomFieldValueType STRING
public static final CustomFieldValueType INTEGER
public static final CustomFieldValueType BOOLEAN
public static final CustomFieldValueType DATE
public static CustomFieldValueType[] values()
for (CustomFieldValueType c : CustomFieldValueType.values()) System.out.println(c);
public static CustomFieldValueType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null