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