public enum STGrowDirection extends Enum<STGrowDirection>
Java class for ST_GrowDirection.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_GrowDirection">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="tL"/>
<enumeration value="tR"/>
<enumeration value="bL"/>
<enumeration value="bR"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
B_L
Bottom Left
|
B_R
Bottom Right
|
T_L
Top Left
|
T_R
Top Right
|
| Modifier and Type | Method and Description |
|---|---|
static STGrowDirection |
fromValue(String v) |
String |
value() |
static STGrowDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STGrowDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STGrowDirection T_L
public static final STGrowDirection T_R
public static final STGrowDirection B_L
public static final STGrowDirection B_R
public static STGrowDirection[] values()
for (STGrowDirection c : STGrowDirection.values()) System.out.println(c);
public static STGrowDirection 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 STGrowDirection fromValue(String v)
Copyright © 2007-2020. All Rights Reserved.