|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<OffLocationServiceID>
org.ota.vehicle.OffLocationServiceID
public enum OffLocationServiceID
The OffLocationServiceType simple type defines a set of valid values for the services that do not occur at the rental facility. Schema fragment(s) for this class:
<xs:simpleType xmlns:ns="http://www.opentravel.org/OTA/2003/05" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="OffLocationServiceID_Type"> <xs:restriction base="xs:string"> <xs:enumeration value="CustPickUp"/> <xs:enumeration value="VehDelivery"/> <xs:enumeration value="CustDropOff"/> <xs:enumeration value="VehCollection"/> <xs:enumeration value="Exchange"/> <xs:enumeration value="RepairLocation"/> </xs:restriction> </xs:simpleType>
Enum Constant Summary | |
---|---|
CUST_DROP_OFF
Indicates that the associated information describes an offered service by which the customer may be dropped off at a location after the vehicle rental period has ended. |
|
CUST_PICK_UP
Indicates that the associated information describes an offered service by which the customer may be picked up and taken to the rental facility, to rent a vehicle. |
|
EXCHANGE
Indicates that the associated information describes an offered service by which the customer will be delivered the exchanged car. |
|
REPAIR_LOCATION
Location where a customer's vehicle is being repaired. |
|
VEH_COLLECTION
Indicates that the associated information describes an offered service by which the vehicle may be collected from a location, rather than the customer returning the vehicle to the rental facility. |
|
VEH_DELIVERY
Indicates that the associated information describes an offered service by which the vehicle may be delivered to a location, rather than the customer taking delivery at the rental facility. |
Method Summary | |
---|---|
static OffLocationServiceID |
convert(java.lang.String value)
|
java.lang.String |
toString()
|
static OffLocationServiceID |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OffLocationServiceID[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final OffLocationServiceID CUST_PICK_UP
public static final OffLocationServiceID VEH_DELIVERY
public static final OffLocationServiceID CUST_DROP_OFF
public static final OffLocationServiceID VEH_COLLECTION
public static final OffLocationServiceID EXCHANGE
public static final OffLocationServiceID REPAIR_LOCATION
Method Detail |
---|
public static OffLocationServiceID[] values()
for (OffLocationServiceID c : OffLocationServiceID.values()) System.out.println(c);
public static OffLocationServiceID 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<OffLocationServiceID>
public static OffLocationServiceID convert(java.lang.String value)
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |