Enum TrafficConstrictionTypeEnum
- java.lang.Object
-
- java.lang.Enum<TrafficConstrictionTypeEnum>
-
- eu.datex2.siri21.schema._2_0rc1._2_0.TrafficConstrictionTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TrafficConstrictionTypeEnum>
public enum TrafficConstrictionTypeEnum extends Enum<TrafficConstrictionTypeEnum>
Java class for TrafficConstrictionTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TrafficConstrictionTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="carriagewayBlocked"/> <enumeration value="carriagewayPartiallyObstructed"/> <enumeration value="lanesBlocked"/> <enumeration value="lanesPartiallyObstructed"/> <enumeration value="roadBlocked"/> <enumeration value="roadPartiallyObstructed"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CARRIAGEWAY_BLOCKEDCARRIAGEWAY_PARTIALLY_OBSTRUCTEDLANES_BLOCKEDLANES_PARTIALLY_OBSTRUCTEDROAD_BLOCKEDROAD_PARTIALLY_OBSTRUCTED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TrafficConstrictionTypeEnumfromValue(String v)Stringvalue()static TrafficConstrictionTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TrafficConstrictionTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CARRIAGEWAY_BLOCKED
public static final TrafficConstrictionTypeEnum CARRIAGEWAY_BLOCKED
-
CARRIAGEWAY_PARTIALLY_OBSTRUCTED
public static final TrafficConstrictionTypeEnum CARRIAGEWAY_PARTIALLY_OBSTRUCTED
-
LANES_BLOCKED
public static final TrafficConstrictionTypeEnum LANES_BLOCKED
-
LANES_PARTIALLY_OBSTRUCTED
public static final TrafficConstrictionTypeEnum LANES_PARTIALLY_OBSTRUCTED
-
ROAD_BLOCKED
public static final TrafficConstrictionTypeEnum ROAD_BLOCKED
-
ROAD_PARTIALLY_OBSTRUCTED
public static final TrafficConstrictionTypeEnum ROAD_PARTIALLY_OBSTRUCTED
-
-
Method Detail
-
values
public static TrafficConstrictionTypeEnum[] 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 (TrafficConstrictionTypeEnum c : TrafficConstrictionTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TrafficConstrictionTypeEnum 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 TrafficConstrictionTypeEnum fromValue(String v)
-
-