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