|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AirProcessingInfoGroup.Search>
org.ota.air.AirProcessingInfoGroup.Search
public static enum AirProcessingInfoGroup.Search
Schema fragment(s) for this class:
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:restriction base="xs:string"> <xs:enumeration value="Normal"/> <xs:enumeration value="Window"/> <xs:enumeration value="ArrivalTime"/> <xs:enumeration value="PowerFlight"/> <xs:enumeration value="AvailableOnly"/> <xs:enumeration value="WaitlistOnly"/> <xs:enumeration value="AvailableAndWaitlist"/> <xs:enumeration value="FreighterFlights"/> <xs:enumeration value="Reward"/> </xs:restriction> </xs:simpleType>
Enum Constant Summary | |
---|---|
ARRIVAL_TIME
Search should be based on arrival time. |
|
AVAILABLE_AND_WAITLIST
Check for available and waitlisted flights. |
|
AVAILABLE_ONLY
Check for available flights. |
|
FREIGHTER_FLIGHTS
Check for available freighter flights. |
|
NORMAL
No special conditions (default) |
|
POWER_FLIGHT
Checks availability and fares by manually entered data. |
|
REWARD
Check for available frequent flyer reward flights and classes. |
|
WAITLIST_ONLY
Only check only for waitlist flights. |
|
WINDOW
Search should be done for a window of time. |
Method Summary | |
---|---|
static AirProcessingInfoGroup.Search |
convert(java.lang.String value)
|
java.lang.String |
toString()
|
static AirProcessingInfoGroup.Search |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AirProcessingInfoGroup.Search[] |
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 AirProcessingInfoGroup.Search NORMAL
public static final AirProcessingInfoGroup.Search WINDOW
public static final AirProcessingInfoGroup.Search ARRIVAL_TIME
public static final AirProcessingInfoGroup.Search POWER_FLIGHT
public static final AirProcessingInfoGroup.Search AVAILABLE_ONLY
public static final AirProcessingInfoGroup.Search WAITLIST_ONLY
public static final AirProcessingInfoGroup.Search AVAILABLE_AND_WAITLIST
public static final AirProcessingInfoGroup.Search FREIGHTER_FLIGHTS
public static final AirProcessingInfoGroup.Search REWARD
Method Detail |
---|
public static AirProcessingInfoGroup.Search[] values()
for (AirProcessingInfoGroup.Search c : AirProcessingInfoGroup.Search.values()) System.out.println(c);
public static AirProcessingInfoGroup.Search 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<AirProcessingInfoGroup.Search>
public static AirProcessingInfoGroup.Search convert(java.lang.String value)
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |