@Beta public enum FormItemType extends Enum<FormItemType>
Enum Constant and Description |
---|
FORM_ITEM_SET |
FORM_OPTION_SET |
FORM_OPTION_SET_OPTION |
INPUT |
LAYOUT |
MIXIN_REFERENCE |
Modifier and Type | Method and Description |
---|---|
static FormItemType |
parse(String value) |
static FormItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormItemType INPUT
public static final FormItemType FORM_ITEM_SET
public static final FormItemType LAYOUT
public static final FormItemType MIXIN_REFERENCE
public static final FormItemType FORM_OPTION_SET
public static final FormItemType FORM_OPTION_SET_OPTION
public static FormItemType[] values()
for (FormItemType c : FormItemType.values()) System.out.println(c);
public static FormItemType 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 static FormItemType parse(String value)