Package com.chrt.api.types
Enum CargojsonCassIndicator.Value
- java.lang.Object
-
- java.lang.Enum<CargojsonCassIndicator.Value>
-
- com.chrt.api.types.CargojsonCassIndicator.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CargojsonCassIndicator.Value>
- Enclosing class:
- CargojsonCassIndicator
public static enum CargojsonCassIndicator.Value extends java.lang.Enum<CargojsonCassIndicator.Value>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CargojsonCassIndicator.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CargojsonCassIndicator.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AWB_AS_INVOICE
public static final CargojsonCassIndicator.Value AWB_AS_INVOICE
-
CANCEL_AWB
public static final CargojsonCassIndicator.Value CANCEL_AWB
-
CHARGES_CORRECTION_ADIVCE
public static final CargojsonCassIndicator.Value CHARGES_CORRECTION_ADIVCE
-
DEBIT_OR_CREDIT_MEMORANDUM
public static final CargojsonCassIndicator.Value DEBIT_OR_CREDIT_MEMORANDUM
-
IDENTIFICATION
public static final CargojsonCassIndicator.Value IDENTIFICATION
-
LATE_REPORTING_WAYBILLS
public static final CargojsonCassIndicator.Value LATE_REPORTING_WAYBILLS
-
NO_COMMISSION_OR_NEGATIVE_SALES_INCENTIVE
public static final CargojsonCassIndicator.Value NO_COMMISSION_OR_NEGATIVE_SALES_INCENTIVE
-
ORIGINAL_DATA
public static final CargojsonCassIndicator.Value ORIGINAL_DATA
-
REVISED_ADJUSTED_DATA
public static final CargojsonCassIndicator.Value REVISED_ADJUSTED_DATA
-
SERVICE_AWB
public static final CargojsonCassIndicator.Value SERVICE_AWB
-
TAX_CALCULATION_REQUIRED
public static final CargojsonCassIndicator.Value TAX_CALCULATION_REQUIRED
-
VOID_AWB
public static final CargojsonCassIndicator.Value VOID_AWB
-
UNKNOWN
public static final CargojsonCassIndicator.Value UNKNOWN
-
-
Method Detail
-
values
public static CargojsonCassIndicator.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 (CargojsonCassIndicator.Value c : CargojsonCassIndicator.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 CargojsonCassIndicator.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
-
-