public enum STHorizontalAlignment extends Enum<STHorizontalAlignment>
Java class for ST_HorizontalAlignment.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_HorizontalAlignment"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="l"/> <enumeration value="ctr"/> <enumeration value="r"/> <enumeration value="none"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CTR
Center
|
L
Left
|
NONE
None
|
R
Right
|
Modifier and Type | Method and Description |
---|---|
static STHorizontalAlignment |
fromValue(String v) |
String |
value() |
static STHorizontalAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STHorizontalAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STHorizontalAlignment L
public static final STHorizontalAlignment CTR
public static final STHorizontalAlignment R
public static final STHorizontalAlignment NONE
public static STHorizontalAlignment[] values()
for (STHorizontalAlignment c : STHorizontalAlignment.values()) System.out.println(c);
public static STHorizontalAlignment 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 STHorizontalAlignment fromValue(String v)
Copyright © 2007-2014. All Rights Reserved.