public enum STFunctionType extends Enum<STFunctionType>
Java class for ST_FunctionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_FunctionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="cnt"/>
<enumeration value="pos"/>
<enumeration value="revPos"/>
<enumeration value="posEven"/>
<enumeration value="posOdd"/>
<enumeration value="var"/>
<enumeration value="depth"/>
<enumeration value="maxDepth"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CNT
Count
|
DEPTH
Depth
|
MAX_DEPTH
Max Depth
|
POS
Position
|
POS_EVEN
Position Even
|
POS_ODD
Position Odd
|
REV_POS
Reverse Position
|
VAR
Variable
|
| Modifier and Type | Method and Description |
|---|---|
static STFunctionType |
fromValue(String v) |
String |
value() |
static STFunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STFunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STFunctionType CNT
public static final STFunctionType POS
public static final STFunctionType REV_POS
public static final STFunctionType POS_EVEN
public static final STFunctionType POS_ODD
public static final STFunctionType VAR
public static final STFunctionType DEPTH
public static final STFunctionType MAX_DEPTH
public static STFunctionType[] values()
for (STFunctionType c : STFunctionType.values()) System.out.println(c);
public static STFunctionType 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 STFunctionType fromValue(String v)
Copyright © 2007-2019. All Rights Reserved.