public enum VehicleTypeEnum extends java.lang.Enum<VehicleTypeEnum>
Java class for VehicleTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="VehicleTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="agriculturalVehicle"/> <enumeration value="anyVehicle"/> <enumeration value="articulatedVehicle"/> <enumeration value="bicycle"/> <enumeration value="bus"/> <enumeration value="car"/> <enumeration value="caravan"/> <enumeration value="carOrLightVehicle"/> <enumeration value="carWithCaravan"/> <enumeration value="carWithTrailer"/> <enumeration value="constructionOrMaintenanceVehicle"/> <enumeration value="fourWheelDrive"/> <enumeration value="highSidedVehicle"/> <enumeration value="lorry"/> <enumeration value="moped"/> <enumeration value="motorcycle"/> <enumeration value="motorcycleWithSideCar"/> <enumeration value="motorscooter"/> <enumeration value="tanker"/> <enumeration value="threeWheeledVehicle"/> <enumeration value="trailer"/> <enumeration value="tram"/> <enumeration value="twoWheeledVehicle"/> <enumeration value="van"/> <enumeration value="vehicleWithCatalyticConverter"/> <enumeration value="vehicleWithoutCatalyticConverter"/> <enumeration value="vehicleWithCaravan"/> <enumeration value="vehicleWithTrailer"/> <enumeration value="withEvenNumberedRegistrationPlates"/> <enumeration value="withOddNumberedRegistrationPlates"/> <enumeration value="other"/> </restriction> </simpleType>
Enum Constant and Description |
---|
AGRICULTURAL_VEHICLE
Vehicle normally used for agricultural purposes, e.g. tractor, combined harvester etc.
|
ANY_VEHICLE
Vehicle of any type.
|
ARTICULATED_VEHICLE
Articulated vehicle.
|
BICYCLE
Bicycle.
|
BUS
Bus.
|
CAR
Car.
|
CAR_OR_LIGHT_VEHICLE
Car or light vehicle.
|
CAR_WITH_CARAVAN
Car towing a caravan.
|
CAR_WITH_TRAILER
Car towing a trailer.
|
CARAVAN
Caravan.
|
CONSTRUCTION_OR_MAINTENANCE_VEHICLE
Vehicle normally used for construction or maintenance purposes, e.g. digger, excavator, bulldozer, lorry mounted crane etc.
|
FOUR_WHEEL_DRIVE
Four wheel drive vehicle.
|
HIGH_SIDED_VEHICLE
High sided vehicle.
|
LORRY
Lorry of any type.
|
MOPED
Moped (a two wheeled motor vehicle characterized by a small engine typically less than 50cc and by normally having pedals).
|
MOTORCYCLE
Motorcycle.
|
MOTORCYCLE_WITH_SIDE_CAR
Three wheeled vehicle comprising a motorcycle with an attached side car.
|
MOTORSCOOTER
Motorscooter (a two wheeled motor vehicle characterized by a step-through frame and small diameter wheels).
|
OTHER
Other than as defined in this enumeration.
|
TANKER
Vehicle with large tank for carrying bulk liquids.
|
THREE_WHEELED_VEHICLE
Three wheeled vehicle of unspecified type.
|
TRAILER
Trailer.
|
TRAM
Tram.
|
TWO_WHEELED_VEHICLE
Two wheeled vehicle of unspecified type.
|
VAN
Van.
|
VEHICLE_WITH_CARAVAN
Vehicle (of unspecified type) towing a caravan.
|
VEHICLE_WITH_CATALYTIC_CONVERTER
Vehicle with catalytic converter.
|
VEHICLE_WITH_TRAILER
Vehicle (of unspecified type) towing a trailer.
|
VEHICLE_WITHOUT_CATALYTIC_CONVERTER
Vehicle without catalytic converter.
|
WITH_EVEN_NUMBERED_REGISTRATION_PLATES
Vehicle with even numbered registration plate.
|
WITH_ODD_NUMBERED_REGISTRATION_PLATES
Vehicle with odd numbered registration plate.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
value |
Modifier and Type | Method and Description |
---|---|
static VehicleTypeEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static VehicleTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VehicleTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VehicleTypeEnum AGRICULTURAL_VEHICLE
public static final VehicleTypeEnum ANY_VEHICLE
public static final VehicleTypeEnum ARTICULATED_VEHICLE
public static final VehicleTypeEnum BICYCLE
public static final VehicleTypeEnum BUS
public static final VehicleTypeEnum CAR
public static final VehicleTypeEnum CARAVAN
public static final VehicleTypeEnum CAR_OR_LIGHT_VEHICLE
public static final VehicleTypeEnum CAR_WITH_CARAVAN
public static final VehicleTypeEnum CAR_WITH_TRAILER
public static final VehicleTypeEnum CONSTRUCTION_OR_MAINTENANCE_VEHICLE
public static final VehicleTypeEnum FOUR_WHEEL_DRIVE
public static final VehicleTypeEnum HIGH_SIDED_VEHICLE
public static final VehicleTypeEnum LORRY
public static final VehicleTypeEnum MOPED
public static final VehicleTypeEnum MOTORCYCLE
public static final VehicleTypeEnum MOTORCYCLE_WITH_SIDE_CAR
public static final VehicleTypeEnum MOTORSCOOTER
public static final VehicleTypeEnum TANKER
public static final VehicleTypeEnum THREE_WHEELED_VEHICLE
public static final VehicleTypeEnum TRAILER
public static final VehicleTypeEnum TRAM
public static final VehicleTypeEnum TWO_WHEELED_VEHICLE
public static final VehicleTypeEnum VAN
public static final VehicleTypeEnum VEHICLE_WITH_CATALYTIC_CONVERTER
public static final VehicleTypeEnum VEHICLE_WITHOUT_CATALYTIC_CONVERTER
public static final VehicleTypeEnum VEHICLE_WITH_CARAVAN
public static final VehicleTypeEnum VEHICLE_WITH_TRAILER
public static final VehicleTypeEnum WITH_EVEN_NUMBERED_REGISTRATION_PLATES
public static final VehicleTypeEnum WITH_ODD_NUMBERED_REGISTRATION_PLATES
public static final VehicleTypeEnum OTHER
public static VehicleTypeEnum[] values()
for (VehicleTypeEnum c : VehicleTypeEnum.values()) System.out.println(c);
public static VehicleTypeEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static VehicleTypeEnum fromValue(java.lang.String v)