Enum RoadMaintenanceTypeEnum
- java.lang.Object
-
- java.lang.Enum<RoadMaintenanceTypeEnum>
-
- eu.datex2.siri21.schema._2_0rc1._2_0.RoadMaintenanceTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<RoadMaintenanceTypeEnum>
public enum RoadMaintenanceTypeEnum extends Enum<RoadMaintenanceTypeEnum>
Java class for RoadMaintenanceTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="RoadMaintenanceTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="clearanceWork"/> <enumeration value="controlledAvalanche"/> <enumeration value="installationWork"/> <enumeration value="grassCuttingWork"/> <enumeration value="maintenanceWork"/> <enumeration value="overheadWorks"/> <enumeration value="repairWork"/> <enumeration value="resurfacingWork"/> <enumeration value="roadMarkingWork"/> <enumeration value="roadsideWork"/> <enumeration value="roadworksClearance"/> <enumeration value="roadworks"/> <enumeration value="rockFallPreventativeMaintenance"/> <enumeration value="saltingInProgress"/> <enumeration value="snowploughsInUse"/> <enumeration value="treeAndVegetationCuttingWork"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RoadMaintenanceTypeEnumfromValue(String v)Stringvalue()static RoadMaintenanceTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static RoadMaintenanceTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLEARANCE_WORK
public static final RoadMaintenanceTypeEnum CLEARANCE_WORK
-
CONTROLLED_AVALANCHE
public static final RoadMaintenanceTypeEnum CONTROLLED_AVALANCHE
-
INSTALLATION_WORK
public static final RoadMaintenanceTypeEnum INSTALLATION_WORK
-
GRASS_CUTTING_WORK
public static final RoadMaintenanceTypeEnum GRASS_CUTTING_WORK
-
MAINTENANCE_WORK
public static final RoadMaintenanceTypeEnum MAINTENANCE_WORK
-
OVERHEAD_WORKS
public static final RoadMaintenanceTypeEnum OVERHEAD_WORKS
-
REPAIR_WORK
public static final RoadMaintenanceTypeEnum REPAIR_WORK
-
RESURFACING_WORK
public static final RoadMaintenanceTypeEnum RESURFACING_WORK
-
ROAD_MARKING_WORK
public static final RoadMaintenanceTypeEnum ROAD_MARKING_WORK
-
ROADSIDE_WORK
public static final RoadMaintenanceTypeEnum ROADSIDE_WORK
-
ROADWORKS_CLEARANCE
public static final RoadMaintenanceTypeEnum ROADWORKS_CLEARANCE
-
ROADWORKS
public static final RoadMaintenanceTypeEnum ROADWORKS
-
ROCK_FALL_PREVENTATIVE_MAINTENANCE
public static final RoadMaintenanceTypeEnum ROCK_FALL_PREVENTATIVE_MAINTENANCE
-
SALTING_IN_PROGRESS
public static final RoadMaintenanceTypeEnum SALTING_IN_PROGRESS
-
SNOWPLOUGHS_IN_USE
public static final RoadMaintenanceTypeEnum SNOWPLOUGHS_IN_USE
-
TREE_AND_VEGETATION_CUTTING_WORK
public static final RoadMaintenanceTypeEnum TREE_AND_VEGETATION_CUTTING_WORK
-
OTHER
public static final RoadMaintenanceTypeEnum OTHER
-
-
Method Detail
-
values
public static RoadMaintenanceTypeEnum[] 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 (RoadMaintenanceTypeEnum c : RoadMaintenanceTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RoadMaintenanceTypeEnum 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 RoadMaintenanceTypeEnum fromValue(String v)
-
-