public static enum FormArea.Type extends java.lang.Enum<FormArea.Type>
Enum Constant and Description |
---|
CHECKBOX |
EDIT |
LIST |
MULTILINE |
STATIC |
UNIREF |
Modifier and Type | Method and Description |
---|---|
static FormArea.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FormArea.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormArea.Type EDIT
public static final FormArea.Type CHECKBOX
public static final FormArea.Type LIST
public static final FormArea.Type STATIC
public static final FormArea.Type UNIREF
public static final FormArea.Type MULTILINE
public static FormArea.Type[] values()
for (FormArea.Type c : FormArea.Type.values()) System.out.println(c);
public static FormArea.Type 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