|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GlobalIndicator>
org.ota.air.GlobalIndicator
public enum GlobalIndicator
Specifies the global travel area. 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="GlobalIndicatorType"> <xs:restriction base="xs:string"> <xs:enumeration value="AP"/> <xs:enumeration value="AT"/> <xs:enumeration value="CT"/> <xs:enumeration value="DO"/> <xs:enumeration value="EH"/> <xs:enumeration value="FE"/> <xs:enumeration value="PA"/> <xs:enumeration value="PN"/> <xs:enumeration value="PO"/> <xs:enumeration value="RU"/> <xs:enumeration value="RW"/> <xs:enumeration value="SA"/> <xs:enumeration value="TS"/> <xs:enumeration value="WH"/> </xs:restriction> </xs:simpleType>
Enum Constant Summary | |
---|---|
AP
Atlantic/Pacific Round-the-World |
|
AT
Atlantic Ocean |
|
CT
Circle trip |
|
DO
Domestic |
|
EH
Eastern Hemisphere |
|
FE
Within the Far East |
|
PA
Pacific Ocean |
|
PN
TC1-TC3 via Pacific/N. |
|
PO
Polar Route |
|
RU
Russia Area 3 |
|
RW
Round the world |
|
SA
South Atlantic only |
|
TS
Trans Siberia Route |
|
WH
Western Hemisphere |
Method Summary | |
---|---|
static GlobalIndicator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GlobalIndicator[] |
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, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final GlobalIndicator AP
public static final GlobalIndicator AT
public static final GlobalIndicator CT
public static final GlobalIndicator DO
public static final GlobalIndicator EH
public static final GlobalIndicator FE
public static final GlobalIndicator PA
public static final GlobalIndicator PN
public static final GlobalIndicator PO
public static final GlobalIndicator RU
public static final GlobalIndicator RW
public static final GlobalIndicator SA
public static final GlobalIndicator TS
public static final GlobalIndicator WH
Method Detail |
---|
public static GlobalIndicator[] values()
for (GlobalIndicator c : GlobalIndicator.values()) System.out.println(c);
public static GlobalIndicator 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 null
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |