Enum 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 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.
      • 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.
      • 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 name
        NullPointerException - if the argument is null
      • value

        public String value()