Enum PollutantTypeEnum
- java.lang.Object
-
- java.lang.Enum<PollutantTypeEnum>
-
- eu.datex2.siri14.schema._1_0._1_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
Enum Constants Enum Constant Description BENZENE_TOLUENE_XYLENEBenzene, toluene or xylene.CARBON_MONOXIDECarbon monoxide.LEADLead.METHANEMethane.NITRIC_OXIDENitric oxide.NITROGEN_DIOXIDENitrogen dioxide.NITROGEN_MONOXIDENitrogen monoxide.NITROGEN_OXIDESNitrogen oxides.NON_METHANE_HYDROCARBONSNon-methane hydrocarbons.OZONEOzone.PARTICULATES_10Particulate matter which passes through a size-selective inlet with a 50% cut-off efficiency at an aerodynamic diameter of 10 µm (micrometres).POLYCYCLIC_AROMATIC_HYDROCARBONSPolycyclicAromaticHydrocarbons.PRIMARY_PARTICULATEPrimary particulate particles.SULPHUR_DIOXIDESulphur dioxide.TOTAL_HYDROCARBONSTotal hydrocarbons, i.e.
-
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
Benzene, toluene or xylene.
-
CARBON_MONOXIDE
public static final PollutantTypeEnum CARBON_MONOXIDE
Carbon monoxide.
-
LEAD
public static final PollutantTypeEnum LEAD
Lead.
-
METHANE
public static final PollutantTypeEnum METHANE
Methane.
-
NITRIC_OXIDE
public static final PollutantTypeEnum NITRIC_OXIDE
Nitric oxide.
-
NITROGEN_DIOXIDE
public static final PollutantTypeEnum NITROGEN_DIOXIDE
Nitrogen dioxide.
-
NITROGEN_MONOXIDE
public static final PollutantTypeEnum NITROGEN_MONOXIDE
Nitrogen monoxide.
-
NITROGEN_OXIDES
public static final PollutantTypeEnum NITROGEN_OXIDES
Nitrogen oxides.
-
NON_METHANE_HYDROCARBONS
public static final PollutantTypeEnum NON_METHANE_HYDROCARBONS
Non-methane hydrocarbons.
-
OZONE
public static final PollutantTypeEnum OZONE
Ozone.
-
PARTICULATES_10
public static final PollutantTypeEnum PARTICULATES_10
Particulate matter which passes through a size-selective inlet with a 50% cut-off efficiency at an aerodynamic diameter of 10 µm (micrometres).
-
POLYCYCLIC_AROMATIC_HYDROCARBONS
public static final PollutantTypeEnum POLYCYCLIC_AROMATIC_HYDROCARBONS
PolycyclicAromaticHydrocarbons.
-
PRIMARY_PARTICULATE
public static final PollutantTypeEnum PRIMARY_PARTICULATE
Primary particulate particles.
-
SULPHUR_DIOXIDE
public static final PollutantTypeEnum SULPHUR_DIOXIDE
Sulphur dioxide.
-
TOTAL_HYDROCARBONS
public static final PollutantTypeEnum TOTAL_HYDROCARBONS
Total hydrocarbons, i.e. including methane and non-methane.
-
-
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)
-
-