Enum LoadTypeEnum

  • All Implemented Interfaces:
    Serializable, Comparable<LoadTypeEnum>

    public enum LoadTypeEnum
    extends Enum<LoadTypeEnum>

    Java class for LoadTypeEnum.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="LoadTypeEnum">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="abnormalLoad"/>
         <enumeration value="ammunition"/>
         <enumeration value="chemicals"/>
         <enumeration value="combustibleMaterials"/>
         <enumeration value="corrosiveMaterials"/>
         <enumeration value="debris"/>
         <enumeration value="explosiveMaterials"/>
         <enumeration value="extraHighLoad"/>
         <enumeration value="extraLongLoad"/>
         <enumeration value="extraWideLoad"/>
         <enumeration value="fuel"/>
         <enumeration value="glass"/>
         <enumeration value="hazardousMaterials"/>
         <enumeration value="livestock"/>
         <enumeration value="materials"/>
         <enumeration value="materialsDangerousForPeople"/>
         <enumeration value="materialsDangerousForTheEnvironment"/>
         <enumeration value="oil"/>
         <enumeration value="ordinary"/>
         <enumeration value="perishableProducts"/>
         <enumeration value="petrol"/>
         <enumeration value="pharmaceuticalMaterials"/>
         <enumeration value="radioactiveMaterials"/>
         <enumeration value="refuse"/>
         <enumeration value="toxicMaterials"/>
         <enumeration value="vehicles"/>
         <enumeration value="other"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • ABNORMAL_LOAD

        public static final LoadTypeEnum ABNORMAL_LOAD
        A load that exceeds normal vehicle dimensions in terms of height, length, width, gross vehicle weight or axle weight or any combination of these. Generally termed an "abnormal load".
      • AMMUNITION

        public static final LoadTypeEnum AMMUNITION
        Ammunition.
      • CHEMICALS

        public static final LoadTypeEnum CHEMICALS
        Chemicals of unspecified type.
      • COMBUSTIBLE_MATERIALS

        public static final LoadTypeEnum COMBUSTIBLE_MATERIALS
        Combustible materials of unspecified type.
      • CORROSIVE_MATERIALS

        public static final LoadTypeEnum CORROSIVE_MATERIALS
        Corrosive materials of unspecified type.
      • DEBRIS

        public static final LoadTypeEnum DEBRIS
        Debris of unspecified type.
      • EXPLOSIVE_MATERIALS

        public static final LoadTypeEnum EXPLOSIVE_MATERIALS
        Explosive materials of unspecified type.
      • EXTRA_HIGH_LOAD

        public static final LoadTypeEnum EXTRA_HIGH_LOAD
        A load of exceptional height.
      • EXTRA_LONG_LOAD

        public static final LoadTypeEnum EXTRA_LONG_LOAD
        A load of exceptional length.
      • EXTRA_WIDE_LOAD

        public static final LoadTypeEnum EXTRA_WIDE_LOAD
        A load of exceptional width.
      • FUEL

        public static final LoadTypeEnum FUEL
        Fuel of unspecified type.
      • HAZARDOUS_MATERIALS

        public static final LoadTypeEnum HAZARDOUS_MATERIALS
        Materials classed as being of a hazardous nature.
      • LIVESTOCK

        public static final LoadTypeEnum LIVESTOCK
        Livestock.
      • MATERIALS

        public static final LoadTypeEnum MATERIALS
        General materials of unspecified type.
      • MATERIALS_DANGEROUS_FOR_PEOPLE

        public static final LoadTypeEnum MATERIALS_DANGEROUS_FOR_PEOPLE
        Materials classed as being of a danger to people or animals.
      • MATERIALS_DANGEROUS_FOR_THE_ENVIRONMENT

        public static final LoadTypeEnum MATERIALS_DANGEROUS_FOR_THE_ENVIRONMENT
        Materials classed as being potentially dangerous to the environment.
      • ORDINARY

        public static final LoadTypeEnum ORDINARY
        Materials that present limited environmental or health risk. Non-combustible, non-toxic, non-corrosive.
      • PERISHABLE_PRODUCTS

        public static final LoadTypeEnum PERISHABLE_PRODUCTS
        Products or produce that will significantly degrade in quality or freshness over a short period of time.
      • PHARMACEUTICAL_MATERIALS

        public static final LoadTypeEnum PHARMACEUTICAL_MATERIALS
        Pharmaceutical materials.
      • RADIOACTIVE_MATERIALS

        public static final LoadTypeEnum RADIOACTIVE_MATERIALS
        Materials that emit significant quantities of electro-magnetic radiation that may present a risk to people, animals or the environment.
      • TOXIC_MATERIALS

        public static final LoadTypeEnum TOXIC_MATERIALS
        Materials of a toxic nature which may damage the environment or endanger public health.
      • VEHICLES

        public static final LoadTypeEnum VEHICLES
        Vehicles of any type which are being transported.
      • OTHER

        public static final LoadTypeEnum OTHER
        Other than as defined in this enumeration.
    • Method Detail

      • values

        public static LoadTypeEnum[] 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 (LoadTypeEnum c : LoadTypeEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LoadTypeEnum 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()