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