public enum STTextAlignType extends Enum<STTextAlignType>
Java class for ST_TextAlignType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_TextAlignType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="l"/>
<enumeration value="ctr"/>
<enumeration value="r"/>
<enumeration value="just"/>
<enumeration value="justLow"/>
<enumeration value="dist"/>
<enumeration value="thaiDist"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CTR
Text Alignment Enum ( Center )
|
DIST
Text Alignment Enum ( Distributed )
|
JUST
Text Alignment Enum ( Justified )
|
JUST_LOW
Text Alignment Enum ( Justified Low )
|
L
Text Alignment Enum ( Left )
|
R
Text Alignment Enum ( Right )
|
THAI_DIST
Text Alignment Enum ( Thai Distributed )
|
| Modifier and Type | Method and Description |
|---|---|
static STTextAlignType |
fromValue(String v) |
String |
value() |
static STTextAlignType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTextAlignType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTextAlignType L
public static final STTextAlignType CTR
public static final STTextAlignType R
public static final STTextAlignType JUST
public static final STTextAlignType JUST_LOW
public static final STTextAlignType DIST
public static final STTextAlignType THAI_DIST
public static STTextAlignType[] values()
for (STTextAlignType c : STTextAlignType.values()) System.out.println(c);
public static STTextAlignType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static STTextAlignType fromValue(String v)
Copyright © 2007-2022. All Rights Reserved.