Enum Class VehicleArea

java.lang.Object
java.lang.Enum<VehicleArea>
zombie.scripting.objects.VehicleArea
All Implemented Interfaces:
Serializable, Comparable<VehicleArea>, Constable

public enum VehicleArea extends Enum<VehicleArea>
  • Enum Constant Details

    • ANIMAL_ENTRY

      public static final VehicleArea ANIMAL_ENTRY
    • ENGINE

      public static final VehicleArea ENGINE
    • GAS_TANK

      public static final VehicleArea GAS_TANK
    • LEFT_SIREN

      public static final VehicleArea LEFT_SIREN
    • RIGHT_SIREN

      public static final VehicleArea RIGHT_SIREN
    • SEAT_FRONT_LEFT

      public static final VehicleArea SEAT_FRONT_LEFT
    • SEAT_FRONT_RIGHT

      public static final VehicleArea SEAT_FRONT_RIGHT
    • SEAT_MIDDLE_LEFT

      public static final VehicleArea SEAT_MIDDLE_LEFT
    • SEAT_MIDDLE_RIGHT

      public static final VehicleArea SEAT_MIDDLE_RIGHT
    • SEAT_REAR_LEFT

      public static final VehicleArea SEAT_REAR_LEFT
    • SEAT_REAR_RIGHT

      public static final VehicleArea SEAT_REAR_RIGHT
    • TIRE_FRONT_LEFT

      public static final VehicleArea TIRE_FRONT_LEFT
    • TIRE_FRONT_RIGHT

      public static final VehicleArea TIRE_FRONT_RIGHT
    • TIRE_REAR_LEFT

      public static final VehicleArea TIRE_REAR_LEFT
    • TIRE_REAR_RIGHT

      public static final VehicleArea TIRE_REAR_RIGHT
    • TRAILER_ANIMAL_FOOD

      public static final VehicleArea TRAILER_ANIMAL_FOOD
    • TRUCK_BED

      public static final VehicleArea TRUCK_BED
  • Method Details

    • values

      public static VehicleArea[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static VehicleArea valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<VehicleArea>