|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AirCheckIn.MessageFunction.Function>
org.ota.air.AirCheckIn.MessageFunction.Function
public static enum AirCheckIn.MessageFunction.Function
Schema fragment(s) for this class:
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:restriction base="xs:string"> <xs:enumeration value="SelectCheckInSegments"/> <xs:enumeration value="SelectPassengersToCheckIn"/> <xs:enumeration value="AssignSeat"/> <xs:enumeration value="ChangeSeat"/> <xs:enumeration value="RequestUpgrade"/> <xs:enumeration value="EnterFrequentFlyerInfoBySegment"/> <xs:enumeration value="ListForStandby"/> <xs:enumeration value="RequestForAlternateFlight"/> <xs:enumeration value="EnterAllowableSSR_OSI_Information"/> <xs:enumeration value="EnterAPIS_Information"/> <xs:enumeration value="EnterEmergencyContactInformation"/> <xs:enumeration value="EnterBaggageInformation"/> <xs:enumeration value="RedisplayEnteredInformationAndStatusOfCheckIn"/> <xs:enumeration value="VolunteerForDeniedBoarding"/> <xs:enumeration value="IssueBagTag"/> <xs:enumeration value="ReprintBagTag"/> <xs:enumeration value="IssueBoardingPass"/> <xs:enumeration value="ReprintBoardingPass"/> <xs:enumeration value="PrintItinerary"/> <xs:enumeration value="PrintReceipt"/> <xs:enumeration value="PrintStandbyCard"/> <xs:enumeration value="ReprintStandbyCard"/> <xs:enumeration value="CancelCheckInDuringProcess"/> <xs:enumeration value="CheckIn"/> </xs:restriction> </xs:simpleType>
Enum Constant Summary | |
---|---|
ASSIGN_SEAT
Assign seat number(s) for the passenger for one or more flight segments. |
|
CANCEL_CHECK_IN_DURING_PROCESS
Cancel a check-in transaction in progress. |
|
CHANGE_SEAT
Change a previously assigned seat number to a new one. |
|
CHECK_IN
Check in passenger without issuing a boarding pass. |
|
ENTER_ALLOWABLE_SSR_OSI_INFORMATION
Provide Special Service Request or Other Service Information. |
|
ENTER_APIS_INFORMATION
Provide Advanced Passenger Information. |
|
ENTER_BAGGAGE_INFORMATION
Provide baggage details such as pieces, weight etc. |
|
ENTER_EMERGENCY_CONTACT_INFORMATION
Provide emergency contact information. |
|
ENTER_FREQUENT_FLYER_INFO_BY_SEGMENT
Enter frequent flyer details for a flight segment. |
|
ISSUE_BAG_TAG
Print baggage tags for checked-in passengers. |
|
ISSUE_BOARDING_PASS
Print boarding passes for checked-in passengers. |
|
LIST_FOR_STANDBY
Lists a passenger as standby for one or more flight segments. |
|
PRINT_ITINERARY
Print the passenger's itinerary of flight segments. |
|
PRINT_RECEIPT
Print a ticket receipt. |
|
PRINT_STANDBY_CARD
Print standby card for a passenger. |
|
REDISPLAY_ENTERED_INFORMATION_AND_STATUS_OF_CHECK_IN
Request latest passenger check-in details for one or more flight segments. |
|
REPRINT_BAG_TAG
Reprint baggage tags for checked-in passengers. |
|
REPRINT_BOARDING_PASS
Reprint boarding passes for checked-in passengers. |
|
REPRINT_STANDBY_CARD
Reprint standby card for a passenger. |
|
REQUEST_FOR_ALTERNATE_FLIGHT
Request for reservation change and check-in for alternative flight segment(s). |
|
REQUEST_UPGRADE
Request for a passenger to be upgraded to a higher class of travel. |
|
SELECT_CHECK_IN_SEGMENTS
Select flight segments for which the passenger(s) will be checked-in. |
|
SELECT_PASSENGERS_TO_CHECK_IN
Select the passenger(s) to be checked-in. |
|
VOLUNTEER_FOR_DENIED_BOARDING
Identifies a passenger who is willing to be a candidate for denied boarding. |
Method Summary | |
---|---|
static AirCheckIn.MessageFunction.Function |
convert(java.lang.String value)
|
java.lang.String |
toString()
|
static AirCheckIn.MessageFunction.Function |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AirCheckIn.MessageFunction.Function[] |
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 AirCheckIn.MessageFunction.Function SELECT_CHECK_IN_SEGMENTS
public static final AirCheckIn.MessageFunction.Function SELECT_PASSENGERS_TO_CHECK_IN
public static final AirCheckIn.MessageFunction.Function ASSIGN_SEAT
public static final AirCheckIn.MessageFunction.Function CHANGE_SEAT
public static final AirCheckIn.MessageFunction.Function REQUEST_UPGRADE
public static final AirCheckIn.MessageFunction.Function ENTER_FREQUENT_FLYER_INFO_BY_SEGMENT
public static final AirCheckIn.MessageFunction.Function LIST_FOR_STANDBY
public static final AirCheckIn.MessageFunction.Function REQUEST_FOR_ALTERNATE_FLIGHT
public static final AirCheckIn.MessageFunction.Function ENTER_ALLOWABLE_SSR_OSI_INFORMATION
public static final AirCheckIn.MessageFunction.Function ENTER_APIS_INFORMATION
public static final AirCheckIn.MessageFunction.Function ENTER_EMERGENCY_CONTACT_INFORMATION
public static final AirCheckIn.MessageFunction.Function ENTER_BAGGAGE_INFORMATION
public static final AirCheckIn.MessageFunction.Function REDISPLAY_ENTERED_INFORMATION_AND_STATUS_OF_CHECK_IN
public static final AirCheckIn.MessageFunction.Function VOLUNTEER_FOR_DENIED_BOARDING
public static final AirCheckIn.MessageFunction.Function ISSUE_BAG_TAG
public static final AirCheckIn.MessageFunction.Function REPRINT_BAG_TAG
public static final AirCheckIn.MessageFunction.Function ISSUE_BOARDING_PASS
public static final AirCheckIn.MessageFunction.Function REPRINT_BOARDING_PASS
public static final AirCheckIn.MessageFunction.Function PRINT_ITINERARY
public static final AirCheckIn.MessageFunction.Function PRINT_RECEIPT
public static final AirCheckIn.MessageFunction.Function PRINT_STANDBY_CARD
public static final AirCheckIn.MessageFunction.Function REPRINT_STANDBY_CARD
public static final AirCheckIn.MessageFunction.Function CANCEL_CHECK_IN_DURING_PROCESS
public static final AirCheckIn.MessageFunction.Function CHECK_IN
Method Detail |
---|
public static AirCheckIn.MessageFunction.Function[] values()
for (AirCheckIn.MessageFunction.Function c : AirCheckIn.MessageFunction.Function.values()) System.out.println(c);
public static AirCheckIn.MessageFunction.Function 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<AirCheckIn.MessageFunction.Function>
public static AirCheckIn.MessageFunction.Function convert(java.lang.String value)
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |