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