Package com.chrt.api.types
Enum CargojsonChargeCode.Value
- java.lang.Object
-
- java.lang.Enum<CargojsonChargeCode.Value>
-
- com.chrt.api.types.CargojsonChargeCode.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CargojsonChargeCode.Value>
- Enclosing class:
- CargojsonChargeCode
public static enum CargojsonChargeCode.Value extends java.lang.Enum<CargojsonChargeCode.Value>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CargojsonChargeCode.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CargojsonChargeCode.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_CHARGES_COLLECT
public static final CargojsonChargeCode.Value ALL_CHARGES_COLLECT
-
ALL_CHARGES_COLLECT_BY_CREDIT_CARD
public static final CargojsonChargeCode.Value ALL_CHARGES_COLLECT_BY_CREDIT_CARD
-
ALL_CHARGES_COLLECT_BY_GBL
public static final CargojsonChargeCode.Value ALL_CHARGES_COLLECT_BY_GBL
-
ALL_CHARGES_PREPAID_CASH
public static final CargojsonChargeCode.Value ALL_CHARGES_PREPAID_CASH
-
ALL_CHARGES_PREPAID_CREDIT
public static final CargojsonChargeCode.Value ALL_CHARGES_PREPAID_CREDIT
-
ALL_CHARGES_PREPAID_BY_CREDIT_CARD
public static final CargojsonChargeCode.Value ALL_CHARGES_PREPAID_BY_CREDIT_CARD
-
ALL_CHARGES_PREPAID_BY_GBL
public static final CargojsonChargeCode.Value ALL_CHARGES_PREPAID_BY_GBL
-
DESTINATION_COLLECT_CASH
public static final CargojsonChargeCode.Value DESTINATION_COLLECT_CASH
-
DESTINATION_COLLECT_CREDIT
public static final CargojsonChargeCode.Value DESTINATION_COLLECT_CREDIT
-
DESTINATION_COLLECT_BY_MCO
public static final CargojsonChargeCode.Value DESTINATION_COLLECT_BY_MCO
-
NO_CHARGE
public static final CargojsonChargeCode.Value NO_CHARGE
-
NO_WEIGHT_CHARGE_OTHER_CHARGES_COLLECT
public static final CargojsonChargeCode.Value NO_WEIGHT_CHARGE_OTHER_CHARGES_COLLECT
-
NO_WEIGHT_CHARGE_OTHER_CHARGES_PREPAID_BY_CREDIT_CARD
public static final CargojsonChargeCode.Value NO_WEIGHT_CHARGE_OTHER_CHARGES_PREPAID_BY_CREDIT_CARD
-
NO_WEIGHT_CHARGE_OTHER_CHARGES_PREPAID_BY_GBL
public static final CargojsonChargeCode.Value NO_WEIGHT_CHARGE_OTHER_CHARGES_PREPAID_BY_GBL
-
NO_WEIGHT_CHARGE_OTHER_CHARGES_PREPAID_CASH
public static final CargojsonChargeCode.Value NO_WEIGHT_CHARGE_OTHER_CHARGES_PREPAID_CASH
-
NO_WEIGHT_CHARGE_OTHER_CHARGES_PREPAID_CREDIT
public static final CargojsonChargeCode.Value NO_WEIGHT_CHARGE_OTHER_CHARGES_PREPAID_CREDIT
-
PARTIAL_COLLECT_CREDIT_PARTIAL_PREPAID_CASH
public static final CargojsonChargeCode.Value PARTIAL_COLLECT_CREDIT_PARTIAL_PREPAID_CASH
-
PARTIAL_COLLECT_CREDIT_PARTIAL_PREPAID_CREDIT
public static final CargojsonChargeCode.Value PARTIAL_COLLECT_CREDIT_PARTIAL_PREPAID_CREDIT
-
PARTIAL_COLLECT_CREDIT_CARD_PARTIAL_PREPAID_CASH
public static final CargojsonChargeCode.Value PARTIAL_COLLECT_CREDIT_CARD_PARTIAL_PREPAID_CASH
-
PARTIAL_COLLECT_CREDIT_CARD_PARTIAL_PREPAID_CREDIT
public static final CargojsonChargeCode.Value PARTIAL_COLLECT_CREDIT_CARD_PARTIAL_PREPAID_CREDIT
-
PARTIAL_PREPAID_CASH_PARTIAL_COLLECT_CASH
public static final CargojsonChargeCode.Value PARTIAL_PREPAID_CASH_PARTIAL_COLLECT_CASH
-
PARTIAL_PREPAID_CREDIT_PARTIAL_COLLECT_CASH
public static final CargojsonChargeCode.Value PARTIAL_PREPAID_CREDIT_PARTIAL_COLLECT_CASH
-
PARTIAL_PREPAID_CREDIT_CARD_PARTIAL_COLLECT_CASH
public static final CargojsonChargeCode.Value PARTIAL_PREPAID_CREDIT_CARD_PARTIAL_COLLECT_CASH
-
PARTIAL_PREPAID_CREDIT_CARD_PARTIAL_COLLECT_CREDIT
public static final CargojsonChargeCode.Value PARTIAL_PREPAID_CREDIT_CARD_PARTIAL_COLLECT_CREDIT
-
PARTIAL_PREPAID_CREDIT_CARD_PARTIAL_COLLECT_CREDIT_CARD
public static final CargojsonChargeCode.Value PARTIAL_PREPAID_CREDIT_CARD_PARTIAL_COLLECT_CREDIT_CARD
-
UNKNOWN
public static final CargojsonChargeCode.Value UNKNOWN
-
-
Method Detail
-
values
public static CargojsonChargeCode.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 (CargojsonChargeCode.Value c : CargojsonChargeCode.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 CargojsonChargeCode.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
-
-