org.ota.vehicle
Enum OffLocationServiceID

java.lang.Object
  extended by java.lang.Enum<OffLocationServiceID>
      extended by org.ota.vehicle.OffLocationServiceID
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OffLocationServiceID>

public enum OffLocationServiceID
extends java.lang.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

CUST_PICK_UP

public static final OffLocationServiceID 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.


VEH_DELIVERY

public static final OffLocationServiceID 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.


CUST_DROP_OFF

public static final OffLocationServiceID 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.


VEH_COLLECTION

public static final OffLocationServiceID 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.


EXCHANGE

public static final OffLocationServiceID EXCHANGE
Indicates that the associated information describes an offered service by which the customer will be delivered the exchanged car.


REPAIR_LOCATION

public static final OffLocationServiceID REPAIR_LOCATION
Location where a customer's vehicle is being repaired.

Method Detail

values

public static OffLocationServiceID[] 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 (OffLocationServiceID c : OffLocationServiceID.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static OffLocationServiceID valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<OffLocationServiceID>

convert

public static OffLocationServiceID convert(java.lang.String value)