public enum STOrientation extends Enum<STOrientation>
Java class for ST_Orientation.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_Orientation">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="maxMin"/>
<enumeration value="minMax"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
MAX_MIN
Maximum to Minimum
|
MIN_MAX
Minimum to Maximum
|
| Modifier and Type | Method and Description |
|---|---|
static STOrientation |
fromValue(String v) |
String |
value() |
static STOrientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STOrientation MAX_MIN
public static final STOrientation MIN_MAX
public static STOrientation[] values()
for (STOrientation c : STOrientation.values()) System.out.println(c);
public static STOrientation 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 STOrientation fromValue(String v)
Copyright © 2007-2022. All Rights Reserved.