public static enum Enums.TextAlign extends java.lang.Enum<Enums.TextAlign>
Enum Constant and Description |
---|
BOTTOM |
HCENTER |
LEFT |
RIGHT |
TOP |
VCENTER |
Modifier and Type | Method and Description |
---|---|
static Enums.TextAlign |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enums.TextAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enums.TextAlign LEFT
public static final Enums.TextAlign RIGHT
public static final Enums.TextAlign TOP
public static final Enums.TextAlign BOTTOM
public static final Enums.TextAlign HCENTER
public static final Enums.TextAlign VCENTER
public static Enums.TextAlign[] values()
for (Enums.TextAlign c : Enums.TextAlign.values()) System.out.println(c);
public static Enums.TextAlign valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null