Enum PollutantTypeEnum
- java.lang.Object
-
- java.lang.Enum<PollutantTypeEnum>
-
- eu.datex2.siri20.schema._2_0rc1._2_0.PollutantTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PollutantTypeEnum>
public enum PollutantTypeEnum extends Enum<PollutantTypeEnum>
Java class for PollutantTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PollutantTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="benzeneTolueneXylene"/> <enumeration value="carbonMonoxide"/> <enumeration value="lead"/> <enumeration value="methane"/> <enumeration value="nitricOxide"/> <enumeration value="nitrogenDioxide"/> <enumeration value="nitrogenMonoxide"/> <enumeration value="nitrogenOxides"/> <enumeration value="nonMethaneHydrocarbons"/> <enumeration value="ozone"/> <enumeration value="particulates10"/> <enumeration value="polycyclicAromaticHydrocarbons"/> <enumeration value="primaryParticulate"/> <enumeration value="sulphurDioxide"/> <enumeration value="totalHydrocarbons"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PollutantTypeEnumfromValue(String v)Stringvalue()static PollutantTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PollutantTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BENZENE_TOLUENE_XYLENE
public static final PollutantTypeEnum BENZENE_TOLUENE_XYLENE
-
CARBON_MONOXIDE
public static final PollutantTypeEnum CARBON_MONOXIDE
-
LEAD
public static final PollutantTypeEnum LEAD
-
METHANE
public static final PollutantTypeEnum METHANE
-
NITRIC_OXIDE
public static final PollutantTypeEnum NITRIC_OXIDE
-
NITROGEN_DIOXIDE
public static final PollutantTypeEnum NITROGEN_DIOXIDE
-
NITROGEN_MONOXIDE
public static final PollutantTypeEnum NITROGEN_MONOXIDE
-
NITROGEN_OXIDES
public static final PollutantTypeEnum NITROGEN_OXIDES
-
NON_METHANE_HYDROCARBONS
public static final PollutantTypeEnum NON_METHANE_HYDROCARBONS
-
OZONE
public static final PollutantTypeEnum OZONE
-
PARTICULATES_10
public static final PollutantTypeEnum PARTICULATES_10
-
POLYCYCLIC_AROMATIC_HYDROCARBONS
public static final PollutantTypeEnum POLYCYCLIC_AROMATIC_HYDROCARBONS
-
PRIMARY_PARTICULATE
public static final PollutantTypeEnum PRIMARY_PARTICULATE
-
SULPHUR_DIOXIDE
public static final PollutantTypeEnum SULPHUR_DIOXIDE
-
TOTAL_HYDROCARBONS
public static final PollutantTypeEnum TOTAL_HYDROCARBONS
-
-
Method Detail
-
values
public static PollutantTypeEnum[] 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 (PollutantTypeEnum c : PollutantTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PollutantTypeEnum 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 PollutantTypeEnum fromValue(String v)
-
-