public enum CustomFieldType extends java.lang.Enum<CustomFieldType>
| Enum Constant and Description |
|---|
BOOLEAN |
DATE |
DROPDOWN |
MULTISELECT |
RADIO |
TEXT |
TEXTAREA |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
prettyPrint() |
static CustomFieldType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomFieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomFieldType BOOLEAN
public static final CustomFieldType DATE
public static final CustomFieldType DROPDOWN
public static final CustomFieldType MULTISELECT
public static final CustomFieldType RADIO
public static final CustomFieldType TEXT
public static final CustomFieldType TEXTAREA
public static CustomFieldType[] values()
for (CustomFieldType c : CustomFieldType.values()) System.out.println(c);
public static CustomFieldType 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 nullpublic java.lang.String prettyPrint()