public enum SpeedLimitDescription extends Enum<SpeedLimitDescription>
Java class for SpeedLimitDescription.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SpeedLimitDescription">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="space"/>
<enumeration value="+"/>
<enumeration value="-"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
VALUE_1
Mandatory Speed, Cross Fix AT speed specified in Speed Limit
|
VALUE_2
Minimum Speed, Cross Fix AT or ABOVE speed specified in Speed Limit
|
VALUE_3
Maximum Speed, Cross Fix AT or BELOW speed specified in Speed Limit
|
| Modifier and Type | Method and Description |
|---|---|
static SpeedLimitDescription |
fromValue(String v) |
String |
value() |
static SpeedLimitDescription |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpeedLimitDescription[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpeedLimitDescription VALUE_1
public static final SpeedLimitDescription VALUE_2
public static final SpeedLimitDescription VALUE_3
public static SpeedLimitDescription[] values()
for (SpeedLimitDescription c : SpeedLimitDescription.values()) System.out.println(c);
public static SpeedLimitDescription 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()
public static SpeedLimitDescription fromValue(String v)
Copyright © 2017. All rights reserved.