Enum EnvironmentalObstructionTypeEnum
- java.lang.Object
-
- java.lang.Enum<EnvironmentalObstructionTypeEnum>
-
- eu.datex2.siri21.schema._2_0rc1._2_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="fallingIce"/> <enumeration value="fallingLightIceOrSnow"/> <enumeration value="flashFloods"/> <enumeration value="flooding"/> <enumeration value="forestFire"/> <enumeration value="grassFire"/> <enumeration value="landslips"/> <enumeration value="mudSlide"/> <enumeration value="sewerOverflow"/> <enumeration value="rockfalls"/> <enumeration value="seriousFire"/> <enumeration value="smokeOrFumes"/> <enumeration value="stormDamage"/> <enumeration value="subsidence"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVALANCHESEARTHQUAKE_DAMAGEFALLEN_TREESFALLING_ICEFALLING_LIGHT_ICE_OR_SNOWFLASH_FLOODSFLOODINGFOREST_FIREGRASS_FIRELANDSLIPSMUD_SLIDEOTHERROCKFALLSSERIOUS_FIRESEWER_OVERFLOWSMOKE_OR_FUMESSTORM_DAMAGESUBSIDENCE
-
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
-
EARTHQUAKE_DAMAGE
public static final EnvironmentalObstructionTypeEnum EARTHQUAKE_DAMAGE
-
FALLEN_TREES
public static final EnvironmentalObstructionTypeEnum FALLEN_TREES
-
FALLING_ICE
public static final EnvironmentalObstructionTypeEnum FALLING_ICE
-
FALLING_LIGHT_ICE_OR_SNOW
public static final EnvironmentalObstructionTypeEnum FALLING_LIGHT_ICE_OR_SNOW
-
FLASH_FLOODS
public static final EnvironmentalObstructionTypeEnum FLASH_FLOODS
-
FLOODING
public static final EnvironmentalObstructionTypeEnum FLOODING
-
FOREST_FIRE
public static final EnvironmentalObstructionTypeEnum FOREST_FIRE
-
GRASS_FIRE
public static final EnvironmentalObstructionTypeEnum GRASS_FIRE
-
LANDSLIPS
public static final EnvironmentalObstructionTypeEnum LANDSLIPS
-
MUD_SLIDE
public static final EnvironmentalObstructionTypeEnum MUD_SLIDE
-
SEWER_OVERFLOW
public static final EnvironmentalObstructionTypeEnum SEWER_OVERFLOW
-
ROCKFALLS
public static final EnvironmentalObstructionTypeEnum ROCKFALLS
-
SERIOUS_FIRE
public static final EnvironmentalObstructionTypeEnum SERIOUS_FIRE
-
SMOKE_OR_FUMES
public static final EnvironmentalObstructionTypeEnum SMOKE_OR_FUMES
-
STORM_DAMAGE
public static final EnvironmentalObstructionTypeEnum STORM_DAMAGE
-
SUBSIDENCE
public static final EnvironmentalObstructionTypeEnum SUBSIDENCE
-
OTHER
public static final EnvironmentalObstructionTypeEnum OTHER
-
-
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)
-
-