public enum ConstructionWorkTypeEnum extends java.lang.Enum<ConstructionWorkTypeEnum>
Java-Klasse für ConstructionWorkTypeEnum.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="ConstructionWorkTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="constructionWork"/> <enumeration value="roadImprovementOrUpgrading"/> <enumeration value="roadWideningWork"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CONSTRUCTION_WORK
Construction work of a general nature at the specified location.
|
ROAD_IMPROVEMENT_OR_UPGRADING
Construction work associated with improvements to the road or its layout or with it upgrading.
|
ROAD_WIDENING_WORK
Road widening work at the specified location.
|
Modifier and Type | Method and Description |
---|---|
static ConstructionWorkTypeEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static ConstructionWorkTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConstructionWorkTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConstructionWorkTypeEnum CONSTRUCTION_WORK
public static final ConstructionWorkTypeEnum ROAD_IMPROVEMENT_OR_UPGRADING
public static final ConstructionWorkTypeEnum ROAD_WIDENING_WORK
public static ConstructionWorkTypeEnum[] values()
for (ConstructionWorkTypeEnum c : ConstructionWorkTypeEnum.values()) System.out.println(c);
public static ConstructionWorkTypeEnum 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 ConstructionWorkTypeEnum fromValue(java.lang.String v)