public enum RoadMaintenanceTypeEnum extends java.lang.Enum<RoadMaintenanceTypeEnum>
Java-Klasse für RoadMaintenanceTypeEnum.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="RoadMaintenanceTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="clearanceWork"/> <enumeration value="installationWork"/> <enumeration value="maintenanceWork"/> <enumeration value="overheadWorks"/> <enumeration value="repairWork"/> <enumeration value="resurfacingWork"/> <enumeration value="roadMarkingWork"/> <enumeration value="roadsideWork"/> <enumeration value="roadworks"/> <enumeration value="sweepingOfRoad"/> <enumeration value="treeAndVegetationCuttingWork"/> <enumeration value="other"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CLEARANCE_WORK
Clearance work of an unspecified nature.
|
INSTALLATION_WORK
Installation of new equipments or systems on or along-side the roadway.
|
MAINTENANCE_WORK
Maintenance of road, associated infrastructure or equipments.
|
OTHER
Other than as defined in this enumeration.
|
OVERHEAD_WORKS
Works which are overhead of the carriageway.
|
REPAIR_WORK
Repair work to road, associated infrastructure or equipments.
|
RESURFACING_WORK
Work associated with relaying or renewal of worn-out road surface (pavement).
|
ROAD_MARKING_WORK
Striping and repainting of road markings, plus placement or replacement of reflecting studs (cats' eyes).
|
ROADSIDE_WORK
Road side work of an unspecified nature.
|
ROADWORKS
Road maintenance or improvement activity of an unspecified nature which may potentially cause traffic disruption.
|
SWEEPING_OF_ROAD
Sweeping of the roadway.
|
TREE_AND_VEGETATION_CUTTING_WORK
Tree and vegetation cutting work adjacent to the roadway.
|
Modifier and Type | Method and Description |
---|---|
static RoadMaintenanceTypeEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static RoadMaintenanceTypeEnum |
valueOf(java.lang.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.
|
public static final RoadMaintenanceTypeEnum CLEARANCE_WORK
public static final RoadMaintenanceTypeEnum INSTALLATION_WORK
public static final RoadMaintenanceTypeEnum MAINTENANCE_WORK
public static final RoadMaintenanceTypeEnum OVERHEAD_WORKS
public static final RoadMaintenanceTypeEnum REPAIR_WORK
public static final RoadMaintenanceTypeEnum RESURFACING_WORK
public static final RoadMaintenanceTypeEnum ROAD_MARKING_WORK
public static final RoadMaintenanceTypeEnum ROADSIDE_WORK
public static final RoadMaintenanceTypeEnum ROADWORKS
public static final RoadMaintenanceTypeEnum SWEEPING_OF_ROAD
public static final RoadMaintenanceTypeEnum TREE_AND_VEGETATION_CUTTING_WORK
public static final RoadMaintenanceTypeEnum OTHER
public static RoadMaintenanceTypeEnum[] values()
for (RoadMaintenanceTypeEnum c : RoadMaintenanceTypeEnum.values()) System.out.println(c);
public static RoadMaintenanceTypeEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static RoadMaintenanceTypeEnum fromValue(java.lang.String v)