org.ota.vehicle
Enum LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type

java.lang.Object
  extended by java.lang.Enum<LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type>
      extended by org.ota.vehicle.LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type>
Enclosing class:
LocDetailsNotifRQ.LocationDetail.ShuttleInfo

public static enum LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type
extends java.lang.Enum<LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type>

Schema fragment(s) for this class:

 <xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:restriction base="xs:string">
     <xs:enumeration value="Non-terminal"/>
     <xs:enumeration value="In-terminal"/>
     <xs:enumeration value="CarRentalShuttle-OffAirport"/>
     <xs:enumeration value="CarRentalShuttle-InTerminal"/>
     <xs:enumeration value="CarRentalShuttle-OnAirport"/>
     <xs:enumeration value="AirportShuttle-OnAirport"/>
     <xs:enumeration value="CallForShuttle"/>
     <xs:enumeration value="AirportShuttleThenRentalShuttle"/>
     <xs:enumeration value="AirportShuttle-OffAirport"/>
     <xs:enumeration value="AirportShuttle-InTerminal"/>
   </xs:restriction>
 </xs:simpleType>
 


Enum Constant Summary
AIRPORT_SHUTTLE_IN_TERMINAL
          Airport shuttle information when the location is in terminal.
AIRPORT_SHUTTLE_OFF_AIRPORT
          Airport Shuttle information when the location is off airport.
AIRPORT_SHUTTLE_ON_AIRPORT
          The airport shuttle is on the airport property.
AIRPORT_SHUTTLE_THEN_RENTAL_SHUTTLE
          Information for using an airport shuttle to get to the rental shuttle.
CALL_FOR_SHUTTLE
          Information for calling for a shuttle.
CAR_RENTAL_SHUTTLE_IN_TERMINAL
          Shuttle information when the location is in the terminal.
CAR_RENTAL_SHUTTLE_OFF_AIRPORT
          Shuttle information when the location is off airport.
CAR_RENTAL_SHUTTLE_ON_AIRPORT
          Shuttle information when the location is on the airport property.
INTERMINAL
          In the terminal shuttle information.
NONTERMINAL
          Outside the terminal shuttle information.
 
Method Summary
static LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type convert(java.lang.String value)
           
 java.lang.String toString()
           
static LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type[] 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

NONTERMINAL

public static final LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type NONTERMINAL
Outside the terminal shuttle information.


INTERMINAL

public static final LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type INTERMINAL
In the terminal shuttle information.


CAR_RENTAL_SHUTTLE_OFF_AIRPORT

public static final LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type CAR_RENTAL_SHUTTLE_OFF_AIRPORT
Shuttle information when the location is off airport.


CAR_RENTAL_SHUTTLE_IN_TERMINAL

public static final LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type CAR_RENTAL_SHUTTLE_IN_TERMINAL
Shuttle information when the location is in the terminal.


CAR_RENTAL_SHUTTLE_ON_AIRPORT

public static final LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type CAR_RENTAL_SHUTTLE_ON_AIRPORT
Shuttle information when the location is on the airport property.


AIRPORT_SHUTTLE_ON_AIRPORT

public static final LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type AIRPORT_SHUTTLE_ON_AIRPORT
The airport shuttle is on the airport property.


CALL_FOR_SHUTTLE

public static final LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type CALL_FOR_SHUTTLE
Information for calling for a shuttle.


AIRPORT_SHUTTLE_THEN_RENTAL_SHUTTLE

public static final LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type AIRPORT_SHUTTLE_THEN_RENTAL_SHUTTLE
Information for using an airport shuttle to get to the rental shuttle.


AIRPORT_SHUTTLE_OFF_AIRPORT

public static final LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type AIRPORT_SHUTTLE_OFF_AIRPORT
Airport Shuttle information when the location is off airport.


AIRPORT_SHUTTLE_IN_TERMINAL

public static final LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type AIRPORT_SHUTTLE_IN_TERMINAL
Airport shuttle information when the location is in terminal.

Method Detail

values

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

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

valueOf

public static LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type 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<LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type>

convert

public static LocDetailsNotifRQ.LocationDetail.ShuttleInfo.Type convert(java.lang.String value)