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