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