public enum STAlignV extends Enum<STAlignV>
Java class for ST_AlignV.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_AlignV">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="top"/>
<enumeration value="bottom"/>
<enumeration value="center"/>
<enumeration value="inside"/>
<enumeration value="outside"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BOTTOM
Bottom
|
CENTER
Center Alignment
|
INSIDE
Inside
|
OUTSIDE
Outside
|
TOP
Top
|
| Modifier and Type | Method and Description |
|---|---|
static STAlignV |
fromValue(String v) |
String |
value() |
static STAlignV |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STAlignV[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STAlignV TOP
public static final STAlignV BOTTOM
public static final STAlignV CENTER
public static final STAlignV INSIDE
public static final STAlignV OUTSIDE
public static STAlignV[] values()
for (STAlignV c : STAlignV.values()) System.out.println(c);
public static STAlignV 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-2022. All Rights Reserved.