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="referenceMarker"/> <enumeration value="roadNode"/> </restriction> </simpleType>
Enum Constant and Description |
---|
REFERENCE_MARKER
A marker which is usually but not necessarily physical that is one of a sequence which are spaced out along the linear object (road) to provide a location reference.
|
ROAD_NODE
A topological node defined on a road network.
|
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 REFERENCE_MARKER
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)