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