Enum LoadTypeEnum
- java.lang.Object
-
- java.lang.Enum<LoadTypeEnum>
-
- eu.datex2.siri13.schema._1_0._1_0.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 Summary
Enum Constants Enum Constant Description ABNORMAL_LOADA load that exceeds normal vehicle dimensions in terms of height, length, width, gross vehicle weight or axle weight or any combination of these.AMMUNITIONAmmunition.CHEMICALSChemicals of unspecified type.COMBUSTIBLE_MATERIALSCombustible materials of unspecified type.CORROSIVE_MATERIALSCorrosive materials of unspecified type.DEBRISDebris of unspecified type.EXPLOSIVE_MATERIALSExplosive materials of unspecified type.EXTRA_HIGH_LOADA load of exceptional height.EXTRA_LONG_LOADA load of exceptional length.EXTRA_WIDE_LOADA load of exceptional width.FUELFuel of unspecified type.GLASSGlass.HAZARDOUS_MATERIALSMaterials classed as being of a hazardous nature.LIVESTOCKLivestock.MATERIALSGeneral materials of unspecified type.MATERIALS_DANGEROUS_FOR_PEOPLEMaterials classed as being of a danger to people or animals.MATERIALS_DANGEROUS_FOR_THE_ENVIRONMENTMaterials classed as being potentially dangerous to the environment.OILOil.ORDINARYMaterials that present limited environmental or health risk.OTHEROther than as defined in this enumeration.PERISHABLE_PRODUCTSProducts or produce that will significantly degrade in quality or freshness over a short period of time.PETROLPetrol.PHARMACEUTICAL_MATERIALSPharmaceutical materials.RADIOACTIVE_MATERIALSMaterials that emit significant quantities of electro-magnetic radiation that may present a risk to people, animals or the environment.REFUSERefuse.TOXIC_MATERIALSMaterials of a toxic nature which may damage the environment or endanger public health.VEHICLESVehicles of any type which are being transported.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LoadTypeEnumfromValue(String v)Stringvalue()static LoadTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static LoadTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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.
-
GLASS
public static final LoadTypeEnum GLASS
Glass.
-
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.
-
OIL
public static final LoadTypeEnum OIL
Oil.
-
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.
-
PETROL
public static final LoadTypeEnum PETROL
Petrol.
-
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.
-
REFUSE
public static final LoadTypeEnum REFUSE
Refuse.
-
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 nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static LoadTypeEnum fromValue(String v)
-
-