public enum SpeedManagementTypeEnum extends java.lang.Enum<SpeedManagementTypeEnum>
Java-Klasse für SpeedManagementTypeEnum.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="SpeedManagementTypeEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="activeSpeedControlInOperation"/>
<enumeration value="doNotSlowdownUnnecessarily"/>
<enumeration value="observeSpeedLimit"/>
<enumeration value="policeSpeedChecksInOperation"/>
<enumeration value="reduceYourSpeed"/>
<enumeration value="speedRestrictionInOperation"/>
<enumeration value="other"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ACTIVE_SPEED_CONTROL_IN_OPERATION
Automatic speed control measures are in place at the specified location, whereby speed limits are set by an automatic system which is triggered by traffic sensing equipment.
|
DO_NOT_SLOWDOWN_UNNECESSARILY
Do not slow down unnecessarily.
|
OBSERVE_SPEED_LIMIT
Observe speed limit.
|
OTHER
Other than as defined in this enumeration.
|
POLICE_SPEED_CHECKS_IN_OPERATION
Police speed checks are in operation.
|
REDUCE_YOUR_SPEED
Reduce your speed.
|
SPEED_RESTRICTION_IN_OPERATION
A speed restriction is in operation.
|
| Modifier and Type | Method and Description |
|---|---|
static SpeedManagementTypeEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static SpeedManagementTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SpeedManagementTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpeedManagementTypeEnum ACTIVE_SPEED_CONTROL_IN_OPERATION
public static final SpeedManagementTypeEnum DO_NOT_SLOWDOWN_UNNECESSARILY
public static final SpeedManagementTypeEnum OBSERVE_SPEED_LIMIT
public static final SpeedManagementTypeEnum POLICE_SPEED_CHECKS_IN_OPERATION
public static final SpeedManagementTypeEnum REDUCE_YOUR_SPEED
public static final SpeedManagementTypeEnum SPEED_RESTRICTION_IN_OPERATION
public static final SpeedManagementTypeEnum OTHER
public static SpeedManagementTypeEnum[] values()
for (SpeedManagementTypeEnum c : SpeedManagementTypeEnum.values()) System.out.println(c);
public static SpeedManagementTypeEnum 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 SpeedManagementTypeEnum fromValue(java.lang.String v)