public enum CustomFieldControl extends java.lang.Enum<CustomFieldControl>
| Enum Constant and Description |
|---|
CHECKBOX |
ENTITY_SELECTION |
MULTI_SELECTION |
RADIO |
RICH_EDITOR |
SINGLE_SELECTION |
TEXT |
TEXTAREA |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isUseSize() |
static CustomFieldControl |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomFieldControl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomFieldControl TEXT
public static final CustomFieldControl TEXTAREA
public static final CustomFieldControl RICH_EDITOR
public static final CustomFieldControl SINGLE_SELECTION
public static final CustomFieldControl MULTI_SELECTION
public static final CustomFieldControl ENTITY_SELECTION
public static final CustomFieldControl RADIO
public static final CustomFieldControl CHECKBOX
public static CustomFieldControl[] values()
for (CustomFieldControl c : CustomFieldControl.values()) System.out.println(c);
public static CustomFieldControl 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 boolean isUseSize()