public enum STAxisType extends Enum<STAxisType>
Java class for ST_AxisType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_AxisType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="self"/>
<enumeration value="ch"/>
<enumeration value="des"/>
<enumeration value="desOrSelf"/>
<enumeration value="par"/>
<enumeration value="ancst"/>
<enumeration value="ancstOrSelf"/>
<enumeration value="followSib"/>
<enumeration value="precedSib"/>
<enumeration value="follow"/>
<enumeration value="preced"/>
<enumeration value="root"/>
<enumeration value="none"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ANCST
Ancestor
|
ANCST_OR_SELF
Ancestor or Self
|
CH
Child
|
DES
Descendant
|
DES_OR_SELF
Descendant or Self
|
FOLLOW
Follow
|
FOLLOW_SIB
Follow Sibling
|
NONE
None
|
PAR
Parent
|
PRECED
Preceding
|
PRECED_SIB
Preceding Sibling
|
ROOT
Root
|
SELF
Self
|
| Modifier and Type | Method and Description |
|---|---|
static STAxisType |
fromValue(String v) |
String |
value() |
static STAxisType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STAxisType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STAxisType SELF
public static final STAxisType CH
public static final STAxisType DES
public static final STAxisType DES_OR_SELF
public static final STAxisType PAR
public static final STAxisType ANCST
public static final STAxisType ANCST_OR_SELF
public static final STAxisType FOLLOW_SIB
public static final STAxisType PRECED_SIB
public static final STAxisType FOLLOW
public static final STAxisType PRECED
public static final STAxisType ROOT
public static final STAxisType NONE
public static STAxisType[] values()
for (STAxisType c : STAxisType.values()) System.out.println(c);
public static STAxisType 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 STAxisType fromValue(String v)
Copyright © 2007-2020. All Rights Reserved.