public enum STCxnType extends Enum<STCxnType>
Java class for ST_CxnType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_CxnType"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="parOf"/> <enumeration value="presOf"/> <enumeration value="presParOf"/> <enumeration value="unknownRelationship"/> </restriction> </simpleType>
Enum Constant and Description |
---|
PAR_OF
Parent Of
|
PRES_OF
Presentation Of
|
PRES_PAR_OF
Presentation Parent Of
|
UNKNOWN_RELATIONSHIP
Unknown Relationship
|
Modifier and Type | Method and Description |
---|---|
static STCxnType |
fromValue(String v) |
String |
value() |
static STCxnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STCxnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STCxnType PAR_OF
public static final STCxnType PRES_OF
public static final STCxnType PRES_PAR_OF
public static final STCxnType UNKNOWN_RELATIONSHIP
public static STCxnType[] values()
for (STCxnType c : STCxnType.values()) System.out.println(c);
public static STCxnType 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-2019. All Rights Reserved.