Enum Constant and Description |
---|
CENTER
Align text in the center.
|
DIST |
JUSTIFY
Align text so that it is justified across the whole line.
|
JUSTIFY_LOW |
LEFT
Align text to the left margin.
|
RIGHT
Align text to the right margin.
|
THAI_DIST |
Modifier and Type | Method and Description |
---|---|
static TextAlign |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextAlign LEFT
public static final TextAlign CENTER
public static final TextAlign RIGHT
public static final TextAlign JUSTIFY
public static final TextAlign JUSTIFY_LOW
public static final TextAlign DIST
public static final TextAlign THAI_DIST
public static TextAlign[] values()
for (TextAlign c : TextAlign.values()) System.out.println(c);
public static 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 nullCopyright 2021 The Apache Software Foundation or its licensors, as applicable.