Enum EnvironmentalObstructionTypeEnum
- java.lang.Object
-
- java.lang.Enum<EnvironmentalObstructionTypeEnum>
-
- eu.datex2.siri13.schema._1_0._1_0.EnvironmentalObstructionTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<EnvironmentalObstructionTypeEnum>
public enum EnvironmentalObstructionTypeEnum extends Enum<EnvironmentalObstructionTypeEnum>
Java class for EnvironmentalObstructionTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EnvironmentalObstructionTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="avalanches"/> <enumeration value="earthquakeDamage"/> <enumeration value="fallenTrees"/> <enumeration value="flashFloods"/> <enumeration value="flooding"/> <enumeration value="grassFire"/> <enumeration value="landslips"/> <enumeration value="mudSlide"/> <enumeration value="rockfalls"/> <enumeration value="seriousFire"/> <enumeration value="sewerOverflow"/> <enumeration value="stormDamage"/> <enumeration value="subsidence"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVALANCHESThe road may be obstructed or partially obstructed due to snowslides.EARTHQUAKE_DAMAGEThe road may be obstructed or partially obstructed because of damage caused by an earthquake.FALLEN_TREESThe road is obstructed or partially obstructed by one or more fallen trees.FLASH_FLOODSThe road may become quickly inundated by powerful floodwaters due to heavy rain nearby.FLOODINGThe road is obstructed or partially obstructed by flood water.GRASS_FIRETraffic may be disrupted due to a grass fire adjacent to the roadway.LANDSLIPSThe road may be obstructed or partially obstructed due to landslides.MUD_SLIDEThe road may be obstructed or partially obstructed due to mudslides.OTHEROther than as defined in this enumeration.ROCKFALLSThe road may be obstructed or partially obstructed due to fallen rocks.SERIOUS_FIRETraffic may be disrupted due to a fire (other than a vehicle fire) adjacent to the roadway.SEWER_OVERFLOWThe road is obstructed or partially obstructed by overflows from one or more sewers.STORM_DAMAGEThe road may be obstructed or partially obstructed by debris caused by strong winds.SUBSIDENCEThe road surface has sunken or collapsed in places.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EnvironmentalObstructionTypeEnumfromValue(String v)Stringvalue()static EnvironmentalObstructionTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static EnvironmentalObstructionTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVALANCHES
public static final EnvironmentalObstructionTypeEnum AVALANCHES
The road may be obstructed or partially obstructed due to snowslides.
-
EARTHQUAKE_DAMAGE
public static final EnvironmentalObstructionTypeEnum EARTHQUAKE_DAMAGE
The road may be obstructed or partially obstructed because of damage caused by an earthquake.
-
FALLEN_TREES
public static final EnvironmentalObstructionTypeEnum FALLEN_TREES
The road is obstructed or partially obstructed by one or more fallen trees.
-
FLASH_FLOODS
public static final EnvironmentalObstructionTypeEnum FLASH_FLOODS
The road may become quickly inundated by powerful floodwaters due to heavy rain nearby.
-
FLOODING
public static final EnvironmentalObstructionTypeEnum FLOODING
The road is obstructed or partially obstructed by flood water.
-
GRASS_FIRE
public static final EnvironmentalObstructionTypeEnum GRASS_FIRE
Traffic may be disrupted due to a grass fire adjacent to the roadway.
-
LANDSLIPS
public static final EnvironmentalObstructionTypeEnum LANDSLIPS
The road may be obstructed or partially obstructed due to landslides.
-
MUD_SLIDE
public static final EnvironmentalObstructionTypeEnum MUD_SLIDE
The road may be obstructed or partially obstructed due to mudslides.
-
ROCKFALLS
public static final EnvironmentalObstructionTypeEnum ROCKFALLS
The road may be obstructed or partially obstructed due to fallen rocks.
-
SERIOUS_FIRE
public static final EnvironmentalObstructionTypeEnum SERIOUS_FIRE
Traffic may be disrupted due to a fire (other than a vehicle fire) adjacent to the roadway.
-
SEWER_OVERFLOW
public static final EnvironmentalObstructionTypeEnum SEWER_OVERFLOW
The road is obstructed or partially obstructed by overflows from one or more sewers.
-
STORM_DAMAGE
public static final EnvironmentalObstructionTypeEnum STORM_DAMAGE
The road may be obstructed or partially obstructed by debris caused by strong winds.
-
SUBSIDENCE
public static final EnvironmentalObstructionTypeEnum SUBSIDENCE
The road surface has sunken or collapsed in places.
-
OTHER
public static final EnvironmentalObstructionTypeEnum OTHER
Other than as defined in this enumeration.
-
-
Method Detail
-
values
public static EnvironmentalObstructionTypeEnum[] 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 (EnvironmentalObstructionTypeEnum c : EnvironmentalObstructionTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnvironmentalObstructionTypeEnum 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 EnvironmentalObstructionTypeEnum fromValue(String v)
-
-