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