public enum STTextHAlign extends Enum<STTextHAlign>
Java class for ST_TextHAlign.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_TextHAlign"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="left"/> <enumeration value="center"/> <enumeration value="right"/> <enumeration value="justify"/> <enumeration value="distributed"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CENTER |
DISTRIBUTED |
JUSTIFY |
LEFT |
RIGHT |
Modifier and Type | Method and Description |
---|---|
static STTextHAlign |
fromValue(String v) |
String |
value() |
static STTextHAlign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTextHAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTextHAlign LEFT
public static final STTextHAlign CENTER
public static final STTextHAlign RIGHT
public static final STTextHAlign JUSTIFY
public static final STTextHAlign DISTRIBUTED
public static STTextHAlign[] values()
for (STTextHAlign c : STTextHAlign.values()) System.out.println(c);
public static STTextHAlign 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 STTextHAlign fromValue(String v)
Copyright © 2007-2013. All Rights Reserved.