public static enum TText.Justification extends java.lang.Enum<TText.Justification>
Enum Constant and Description |
---|
CENTER
Centered text.
|
FULL
Fully-justified text.
|
LEFT
Left-justified text.
|
NONE
Not justified at all, use spacing as provided by the client.
|
RIGHT
Right-justified text.
|
Modifier and Type | Method and Description |
---|---|
static TText.Justification |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TText.Justification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TText.Justification NONE
public static final TText.Justification LEFT
public static final TText.Justification CENTER
public static final TText.Justification RIGHT
public static final TText.Justification FULL
public static TText.Justification[] values()
for (TText.Justification c : TText.Justification.values()) System.out.println(c);
public static TText.Justification 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 nullCopyright © 2019 Kevin Lamonte. Licensed MIT.