Enum TrafficStatusEnum
- java.lang.Object
-
- java.lang.Enum<TrafficStatusEnum>
-
- eu.datex2.siri21.schema._2_0rc1._2_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 CONGESTEDFREE_FLOWHEAVYIMPOSSIBLEUNKNOWN
-
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
-
CONGESTED
public static final TrafficStatusEnum CONGESTED
-
HEAVY
public static final TrafficStatusEnum HEAVY
-
FREE_FLOW
public static final TrafficStatusEnum FREE_FLOW
-
UNKNOWN
public static final TrafficStatusEnum 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)
-
-