| Enum Constant and Description |
|---|
DRIVER_NAME |
FLIGHT_DESTINATION_TYPE |
PASSENGER_NAME |
PASSENGER_NAME_RECORD |
TRIP_DISTANCE |
VEHICLE_IDENTIFIER |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
Code() |
static AVPType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AVPType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AVPType DRIVER_NAME
public static final AVPType PASSENGER_NAME
public static final AVPType PASSENGER_NAME_RECORD
public static final AVPType TRIP_DISTANCE
public static final AVPType VEHICLE_IDENTIFIER
public static final AVPType FLIGHT_DESTINATION_TYPE
public static AVPType[] values()
for (AVPType c : AVPType.values()) System.out.println(c);
public static AVPType 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 Code()