public enum AbnormalTrafficTypeEnum extends java.lang.Enum<AbnormalTrafficTypeEnum>
Java class for AbnormalTrafficTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AbnormalTrafficTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="stationaryTraffic"/> <enumeration value="queuingTraffic"/> <enumeration value="slowTraffic"/> <enumeration value="heavyTraffic"/> <enumeration value="unspecifiedAbnormalTraffic"/> <enumeration value="other"/> </restriction> </simpleType>
Enum Constant and Description |
---|
HEAVY_TRAFFIC
Traffic is heavy at the specified location (i.e. average speed is between 75% and 90% of its free-flow level).
|
OTHER
Other than as defined in this enumeration.
|
QUEUING_TRAFFIC
Traffic is queuing at the specified location, although there is still some traffic movement (i.e. average speed is between 10% and 25% of its free-flow level).
|
SLOW_TRAFFIC
Traffic is slow moving at the specified location, but not yet forming queues (i.e. average speed is between 25% and 75% of its free-flow level).
|
STATIONARY_TRAFFIC
Traffic is stationary, or very near stationary, at the specified location (i.e. average speed is less than 10% of its free-flow level).
|
UNSPECIFIED_ABNORMAL_TRAFFIC
There are abnormal traffic conditions of an unspecified nature at the specified location.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
value |
Modifier and Type | Method and Description |
---|---|
static AbnormalTrafficTypeEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static AbnormalTrafficTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbnormalTrafficTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbnormalTrafficTypeEnum STATIONARY_TRAFFIC
public static final AbnormalTrafficTypeEnum QUEUING_TRAFFIC
public static final AbnormalTrafficTypeEnum SLOW_TRAFFIC
public static final AbnormalTrafficTypeEnum HEAVY_TRAFFIC
public static final AbnormalTrafficTypeEnum UNSPECIFIED_ABNORMAL_TRAFFIC
public static final AbnormalTrafficTypeEnum OTHER
public static AbnormalTrafficTypeEnum[] values()
for (AbnormalTrafficTypeEnum c : AbnormalTrafficTypeEnum.values()) System.out.println(c);
public static AbnormalTrafficTypeEnum 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 AbnormalTrafficTypeEnum fromValue(java.lang.String v)