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