Enum VehicleObstructionTypeEnum
- java.lang.Object
-
- java.lang.Enum<VehicleObstructionTypeEnum>
-
- eu.datex2.siri20.schema._2_0rc1._2_0.VehicleObstructionTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<VehicleObstructionTypeEnum>
public enum VehicleObstructionTypeEnum extends Enum<VehicleObstructionTypeEnum>
Java class for VehicleObstructionTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="VehicleObstructionTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="abandonedVehicle"/> <enumeration value="abnormalLoad"/> <enumeration value="brokenDownBus"/> <enumeration value="brokenDownHeavyLorry"/> <enumeration value="brokenDownVehicle"/> <enumeration value="convoy"/> <enumeration value="damagedVehicle"/> <enumeration value="dangerousSlowMovingVehicle"/> <enumeration value="emergencyVehicle"/> <enumeration value="highSpeedEmergencyVehicle"/> <enumeration value="longLoad"/> <enumeration value="militaryConvoy"/> <enumeration value="overheightVehicle"/> <enumeration value="prohibitedVehicleOnTheRoadway"/> <enumeration value="saltingOrGrittingVehicleInUse"/> <enumeration value="slowMovingMaintenanceVehicle"/> <enumeration value="slowVehicle"/> <enumeration value="snowplough"/> <enumeration value="trackLayingVehicle"/> <enumeration value="unlitVehicleOnTheRoad"/> <enumeration value="vehicleOnFire"/> <enumeration value="vehicleCarryingHazardousMaterials"/> <enumeration value="vehicleInDifficulty"/> <enumeration value="vehicleOnWrongCarriageway"/> <enumeration value="vehicleStuck"/> <enumeration value="vehicleStuckUnderBridge"/> <enumeration value="vehicleWithOverheightLoad"/> <enumeration value="vehicleWithOverwideLoad"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VehicleObstructionTypeEnumfromValue(String v)Stringvalue()static VehicleObstructionTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static VehicleObstructionTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABANDONED_VEHICLE
public static final VehicleObstructionTypeEnum ABANDONED_VEHICLE
-
ABNORMAL_LOAD
public static final VehicleObstructionTypeEnum ABNORMAL_LOAD
-
BROKEN_DOWN_BUS
public static final VehicleObstructionTypeEnum BROKEN_DOWN_BUS
-
BROKEN_DOWN_HEAVY_LORRY
public static final VehicleObstructionTypeEnum BROKEN_DOWN_HEAVY_LORRY
-
BROKEN_DOWN_VEHICLE
public static final VehicleObstructionTypeEnum BROKEN_DOWN_VEHICLE
-
CONVOY
public static final VehicleObstructionTypeEnum CONVOY
-
DAMAGED_VEHICLE
public static final VehicleObstructionTypeEnum DAMAGED_VEHICLE
-
DANGEROUS_SLOW_MOVING_VEHICLE
public static final VehicleObstructionTypeEnum DANGEROUS_SLOW_MOVING_VEHICLE
-
EMERGENCY_VEHICLE
public static final VehicleObstructionTypeEnum EMERGENCY_VEHICLE
-
HIGH_SPEED_EMERGENCY_VEHICLE
public static final VehicleObstructionTypeEnum HIGH_SPEED_EMERGENCY_VEHICLE
-
LONG_LOAD
public static final VehicleObstructionTypeEnum LONG_LOAD
-
MILITARY_CONVOY
public static final VehicleObstructionTypeEnum MILITARY_CONVOY
-
OVERHEIGHT_VEHICLE
public static final VehicleObstructionTypeEnum OVERHEIGHT_VEHICLE
-
PROHIBITED_VEHICLE_ON_THE_ROADWAY
public static final VehicleObstructionTypeEnum PROHIBITED_VEHICLE_ON_THE_ROADWAY
-
SALTING_OR_GRITTING_VEHICLE_IN_USE
public static final VehicleObstructionTypeEnum SALTING_OR_GRITTING_VEHICLE_IN_USE
-
SLOW_MOVING_MAINTENANCE_VEHICLE
public static final VehicleObstructionTypeEnum SLOW_MOVING_MAINTENANCE_VEHICLE
-
SLOW_VEHICLE
public static final VehicleObstructionTypeEnum SLOW_VEHICLE
-
SNOWPLOUGH
public static final VehicleObstructionTypeEnum SNOWPLOUGH
-
TRACK_LAYING_VEHICLE
public static final VehicleObstructionTypeEnum TRACK_LAYING_VEHICLE
-
UNLIT_VEHICLE_ON_THE_ROAD
public static final VehicleObstructionTypeEnum UNLIT_VEHICLE_ON_THE_ROAD
-
VEHICLE_ON_FIRE
public static final VehicleObstructionTypeEnum VEHICLE_ON_FIRE
-
VEHICLE_CARRYING_HAZARDOUS_MATERIALS
public static final VehicleObstructionTypeEnum VEHICLE_CARRYING_HAZARDOUS_MATERIALS
-
VEHICLE_IN_DIFFICULTY
public static final VehicleObstructionTypeEnum VEHICLE_IN_DIFFICULTY
-
VEHICLE_ON_WRONG_CARRIAGEWAY
public static final VehicleObstructionTypeEnum VEHICLE_ON_WRONG_CARRIAGEWAY
-
VEHICLE_STUCK
public static final VehicleObstructionTypeEnum VEHICLE_STUCK
-
VEHICLE_STUCK_UNDER_BRIDGE
public static final VehicleObstructionTypeEnum VEHICLE_STUCK_UNDER_BRIDGE
-
VEHICLE_WITH_OVERHEIGHT_LOAD
public static final VehicleObstructionTypeEnum VEHICLE_WITH_OVERHEIGHT_LOAD
-
VEHICLE_WITH_OVERWIDE_LOAD
public static final VehicleObstructionTypeEnum VEHICLE_WITH_OVERWIDE_LOAD
-
OTHER
public static final VehicleObstructionTypeEnum OTHER
-
-
Method Detail
-
values
public static VehicleObstructionTypeEnum[] 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 (VehicleObstructionTypeEnum c : VehicleObstructionTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VehicleObstructionTypeEnum 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 VehicleObstructionTypeEnum fromValue(String v)
-
-