Package com.chrt.api.types
Enum CargojsonRateClassCode.Value
- java.lang.Object
-
- java.lang.Enum<CargojsonRateClassCode.Value>
-
- com.chrt.api.types.CargojsonRateClassCode.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CargojsonRateClassCode.Value>
- Enclosing class:
- CargojsonRateClassCode
public static enum CargojsonRateClassCode.Value extends java.lang.Enum<CargojsonRateClassCode.Value>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CargojsonRateClassCode.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CargojsonRateClassCode.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASIC_CHARGE
public static final CargojsonRateClassCode.Value BASIC_CHARGE
-
CLASS_RATE_REDUCTION
public static final CargojsonRateClassCode.Value CLASS_RATE_REDUCTION
-
CLASS_RATE_SURCHARGE
public static final CargojsonRateClassCode.Value CLASS_RATE_SURCHARGE
-
INTERNATIONAL_PRIORITY_SERVICE_RATE
public static final CargojsonRateClassCode.Value INTERNATIONAL_PRIORITY_SERVICE_RATE
-
MINIMUM_CHARGE
public static final CargojsonRateClassCode.Value MINIMUM_CHARGE
-
NORMAL_RATE
public static final CargojsonRateClassCode.Value NORMAL_RATE
-
QUANTITY_RATE
public static final CargojsonRateClassCode.Value QUANTITY_RATE
-
RATE_PER_KILOGRAM
public static final CargojsonRateClassCode.Value RATE_PER_KILOGRAM
-
SPECIFIC_COMMODITY_RATE
public static final CargojsonRateClassCode.Value SPECIFIC_COMMODITY_RATE
-
UNIT_LOAD_DEVICE_ADDITIONAL_INFORMATION
public static final CargojsonRateClassCode.Value UNIT_LOAD_DEVICE_ADDITIONAL_INFORMATION
-
UNIT_LOAD_DEVICE_ADDITIONAL_RATE
public static final CargojsonRateClassCode.Value UNIT_LOAD_DEVICE_ADDITIONAL_RATE
-
UNIT_LOAD_DEVIDE_BASIC_CHARGE_OR_RATE
public static final CargojsonRateClassCode.Value UNIT_LOAD_DEVIDE_BASIC_CHARGE_OR_RATE
-
UNIT_LOAD_DEVICE_DISCOUNT
public static final CargojsonRateClassCode.Value UNIT_LOAD_DEVICE_DISCOUNT
-
UNKNOWN
public static final CargojsonRateClassCode.Value UNKNOWN
-
-
Method Detail
-
values
public static CargojsonRateClassCode.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 (CargojsonRateClassCode.Value c : CargojsonRateClassCode.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 CargojsonRateClassCode.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
-
-