public enum LinearElementNatureEnum extends java.lang.Enum<LinearElementNatureEnum>
Java class for LinearElementNatureEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LinearElementNatureEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="road"/>
<enumeration value="roadSection"/>
<enumeration value="slipRoad"/>
<enumeration value="other"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
OTHER |
ROAD |
ROAD_SECTION |
SLIP_ROAD |
| Modifier and Type | Method and Description |
|---|---|
static LinearElementNatureEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static LinearElementNatureEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LinearElementNatureEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinearElementNatureEnum ROAD
public static final LinearElementNatureEnum ROAD_SECTION
public static final LinearElementNatureEnum SLIP_ROAD
public static final LinearElementNatureEnum OTHER
public static LinearElementNatureEnum[] values()
for (LinearElementNatureEnum c : LinearElementNatureEnum.values()) System.out.println(c);
public static LinearElementNatureEnum 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 LinearElementNatureEnum fromValue(java.lang.String v)