|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<TextAlign> org.apache.poi.xslf.usermodel.TextAlign
public enum TextAlign
Specified a list of text alignment types
Enum Constant Summary | |
---|---|
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
|
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |