Enum VehicleStatusEnum
- java.lang.Object
-
- java.lang.Enum<VehicleStatusEnum>
-
- eu.datex2.siri13.schema._1_0._1_0.VehicleStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<VehicleStatusEnum>
public enum VehicleStatusEnum extends Enum<VehicleStatusEnum>
Java class for VehicleStatusEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="VehicleStatusEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="abandoned"/> <enumeration value="brokenDown"/> <enumeration value="burntOut"/> <enumeration value="damaged"/> <enumeration value="damagedAndImmobililized"/> <enumeration value="onFire"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABANDONEDAbandoned vehicle.BROKEN_DOWNBroken down vehicle (i.e.BURNT_OUTBurnt out vehicle, but fire is extinguished.DAMAGEDVehicle is damaged following an incident or collision.DAMAGED_AND_IMMOBILILIZEDVehicle is damaged following an incident or collision.ON_FIREVehicle is on fire.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VehicleStatusEnumfromValue(String v)Stringvalue()static VehicleStatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static VehicleStatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABANDONED
public static final VehicleStatusEnum ABANDONED
Abandoned vehicle.
-
BROKEN_DOWN
public static final VehicleStatusEnum BROKEN_DOWN
Broken down vehicle (i.e. it is immobile due to mechanical breakdown).
-
BURNT_OUT
public static final VehicleStatusEnum BURNT_OUT
Burnt out vehicle, but fire is extinguished.
-
DAMAGED
public static final VehicleStatusEnum DAMAGED
Vehicle is damaged following an incident or collision. It may or may not be able to move by itself.
-
DAMAGED_AND_IMMOBILILIZED
public static final VehicleStatusEnum DAMAGED_AND_IMMOBILILIZED
Vehicle is damaged following an incident or collision. It is immobilized and therefore needs assistance to be moved.
-
ON_FIRE
public static final VehicleStatusEnum ON_FIRE
Vehicle is on fire.
-
-
Method Detail
-
values
public static VehicleStatusEnum[] 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 (VehicleStatusEnum c : VehicleStatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VehicleStatusEnum 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 VehicleStatusEnum fromValue(String v)
-
-