Package com.chrt.api.types
Enum OperationsTaskTypeEnum.Value
- java.lang.Object
-
- java.lang.Enum<OperationsTaskTypeEnum.Value>
-
- com.chrt.api.types.OperationsTaskTypeEnum.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<OperationsTaskTypeEnum.Value>
- Enclosing class:
- OperationsTaskTypeEnum
public static enum OperationsTaskTypeEnum.Value extends java.lang.Enum<OperationsTaskTypeEnum.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOK_CARGOCONTACT_AGENTCONTACT_AIRLINECONTACT_CUSTOMERCONTACT_OTHERCUSTOMFACILITY_CHECKFINALIZE_BILLINGFLIGHT_CHECKOTHERREVIEW_ORDER_DETAILSTRACK_AND_VERIFYUNKNOWNWEATHER_CHECK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OperationsTaskTypeEnum.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static OperationsTaskTypeEnum.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REVIEW_ORDER_DETAILS
public static final OperationsTaskTypeEnum.Value REVIEW_ORDER_DETAILS
-
FLIGHT_CHECK
public static final OperationsTaskTypeEnum.Value FLIGHT_CHECK
-
FACILITY_CHECK
public static final OperationsTaskTypeEnum.Value FACILITY_CHECK
-
WEATHER_CHECK
public static final OperationsTaskTypeEnum.Value WEATHER_CHECK
-
BOOK_CARGO
public static final OperationsTaskTypeEnum.Value BOOK_CARGO
-
TRACK_AND_VERIFY
public static final OperationsTaskTypeEnum.Value TRACK_AND_VERIFY
-
CONTACT_CUSTOMER
public static final OperationsTaskTypeEnum.Value CONTACT_CUSTOMER
-
CONTACT_AGENT
public static final OperationsTaskTypeEnum.Value CONTACT_AGENT
-
CONTACT_AIRLINE
public static final OperationsTaskTypeEnum.Value CONTACT_AIRLINE
-
CONTACT_OTHER
public static final OperationsTaskTypeEnum.Value CONTACT_OTHER
-
FINALIZE_BILLING
public static final OperationsTaskTypeEnum.Value FINALIZE_BILLING
-
CUSTOM
public static final OperationsTaskTypeEnum.Value CUSTOM
-
OTHER
public static final OperationsTaskTypeEnum.Value OTHER
-
UNKNOWN
public static final OperationsTaskTypeEnum.Value UNKNOWN
-
-
Method Detail
-
values
public static OperationsTaskTypeEnum.Value[] 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 (OperationsTaskTypeEnum.Value c : OperationsTaskTypeEnum.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationsTaskTypeEnum.Value 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 namejava.lang.NullPointerException- if the argument is null
-
-