Enum DangerousGoodsRegulationsEnum
- java.lang.Object
-
- java.lang.Enum<DangerousGoodsRegulationsEnum>
-
- eu.datex2.siri20.schema._2_0rc1._2_0.DangerousGoodsRegulationsEnum
-
- All Implemented Interfaces:
Serializable,Comparable<DangerousGoodsRegulationsEnum>
public enum DangerousGoodsRegulationsEnum extends Enum<DangerousGoodsRegulationsEnum>
Java class for DangerousGoodsRegulationsEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DangerousGoodsRegulationsEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="adr"/> <enumeration value="iataIcao"/> <enumeration value="imoImdg"/> <enumeration value="railroadDangerousGoodsBook"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADRIATA_ICAOIMO_IMDGRAILROAD_DANGEROUS_GOODS_BOOK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DangerousGoodsRegulationsEnumfromValue(String v)Stringvalue()static DangerousGoodsRegulationsEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static DangerousGoodsRegulationsEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADR
public static final DangerousGoodsRegulationsEnum ADR
-
IATA_ICAO
public static final DangerousGoodsRegulationsEnum IATA_ICAO
-
IMO_IMDG
public static final DangerousGoodsRegulationsEnum IMO_IMDG
-
RAILROAD_DANGEROUS_GOODS_BOOK
public static final DangerousGoodsRegulationsEnum RAILROAD_DANGEROUS_GOODS_BOOK
-
-
Method Detail
-
values
public static DangerousGoodsRegulationsEnum[] 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 (DangerousGoodsRegulationsEnum c : DangerousGoodsRegulationsEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DangerousGoodsRegulationsEnum 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 DangerousGoodsRegulationsEnum fromValue(String v)
-
-