Enum 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 Detail

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

        public String value()