public enum STElementType extends Enum<STElementType>
Java class for ST_ElementType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_ElementType"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="all"/> <enumeration value="doc"/> <enumeration value="node"/> <enumeration value="norm"/> <enumeration value="nonNorm"/> <enumeration value="asst"/> <enumeration value="nonAsst"/> <enumeration value="parTrans"/> <enumeration value="pres"/> <enumeration value="sibTrans"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ALL
All
|
ASST
Assistant
|
DOC
Document
|
NODE
Node
|
NON_ASST
Non Assistant
|
NON_NORM
Non Normal
|
NORM
Normal
|
PAR_TRANS
Parent Transition
|
PRES
Presentation
|
SIB_TRANS
Sibling Transition
|
Modifier and Type | Method and Description |
---|---|
static STElementType |
fromValue(String v) |
String |
value() |
static STElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STElementType ALL
public static final STElementType DOC
public static final STElementType NODE
public static final STElementType NORM
public static final STElementType NON_NORM
public static final STElementType ASST
public static final STElementType NON_ASST
public static final STElementType PAR_TRANS
public static final STElementType PRES
public static final STElementType SIB_TRANS
public static STElementType[] values()
for (STElementType c : STElementType.values()) System.out.println(c);
public static STElementType 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 STElementType fromValue(String v)
Copyright © 2007-2019. All Rights Reserved.