public enum STHow extends Enum<STHow>
Java class for ST_How.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_How"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="top"/> <enumeration value="middle"/> <enumeration value="bottom"/> <enumeration value="left"/> <enumeration value="center"/> <enumeration value="right"/> </restriction> </simpleType>
Enum Constant and Description |
---|
BOTTOM
Bottom Alignment
|
CENTER
Center Alignment
|
LEFT
Left Alignment
|
MIDDLE
Middle Alignment
|
RIGHT
Right Alignment
|
TOP
Top Alignment
|
Modifier and Type | Method and Description |
---|---|
static STHow |
fromValue(String v) |
String |
value() |
static STHow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STHow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STHow TOP
public static final STHow MIDDLE
public static final STHow BOTTOM
public static final STHow LEFT
public static final STHow CENTER
public static final STHow RIGHT
public static STHow[] values()
for (STHow c : STHow.values()) System.out.println(c);
public static STHow 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.