public enum ReferentTypeEnum extends java.lang.Enum<ReferentTypeEnum>
Java class for ReferentTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ReferentTypeEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="boundary"/>
<enumeration value="intersection"/>
<enumeration value="referenceMarker"/>
<enumeration value="landmark"/>
<enumeration value="roadNode"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BOUNDARY |
INTERSECTION |
LANDMARK |
REFERENCE_MARKER |
ROAD_NODE |
| Modifier and Type | Method and Description |
|---|---|
static ReferentTypeEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static ReferentTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReferentTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReferentTypeEnum BOUNDARY
public static final ReferentTypeEnum INTERSECTION
public static final ReferentTypeEnum REFERENCE_MARKER
public static final ReferentTypeEnum LANDMARK
public static final ReferentTypeEnum ROAD_NODE
public static ReferentTypeEnum[] values()
for (ReferentTypeEnum c : ReferentTypeEnum.values()) System.out.println(c);
public static ReferentTypeEnum valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String value()
public static ReferentTypeEnum fromValue(java.lang.String v)