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