Enum TrafficStatusEnum
- java.lang.Object
-
- java.lang.Enum<TrafficStatusEnum>
-
- eu.datex2.siri13.schema._1_0._1_0.TrafficStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TrafficStatusEnum>
public enum TrafficStatusEnum extends Enum<TrafficStatusEnum>
Java class for TrafficStatusEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TrafficStatusEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="impossible"/> <enumeration value="congested"/> <enumeration value="heavy"/> <enumeration value="freeFlow"/> <enumeration value="unknown"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONGESTEDTraffic in the specified direction is congested making driving very slow and difficult.FREE_FLOWTraffic in the specified direction is free flowing.HEAVYTraffic in the specified direction is heavier than usual making driving conditions more difficult than normal.IMPOSSIBLETraffic in the specified direction is completely congested, effectively at a standstill, making driving impossible.UNKNOWNTraffic conditions are unknown.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TrafficStatusEnumfromValue(String v)Stringvalue()static TrafficStatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TrafficStatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IMPOSSIBLE
public static final TrafficStatusEnum IMPOSSIBLE
Traffic in the specified direction is completely congested, effectively at a standstill, making driving impossible.
-
CONGESTED
public static final TrafficStatusEnum CONGESTED
Traffic in the specified direction is congested making driving very slow and difficult.
-
HEAVY
public static final TrafficStatusEnum HEAVY
Traffic in the specified direction is heavier than usual making driving conditions more difficult than normal.
-
FREE_FLOW
public static final TrafficStatusEnum FREE_FLOW
Traffic in the specified direction is free flowing.
-
UNKNOWN
public static final TrafficStatusEnum UNKNOWN
Traffic conditions are unknown.
-
-
Method Detail
-
values
public static TrafficStatusEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TrafficStatusEnum c : TrafficStatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TrafficStatusEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static TrafficStatusEnum fromValue(String v)
-
-