Package com.chrt.api.types
Enum CargojsonServiceCode.Value
- java.lang.Object
-
- java.lang.Enum<CargojsonServiceCode.Value>
-
- com.chrt.api.types.CargojsonServiceCode.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CargojsonServiceCode.Value>
- Enclosing class:
- CargojsonServiceCode
public static enum CargojsonServiceCode.Value extends java.lang.Enum<CargojsonServiceCode.Value>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CargojsonServiceCode.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CargojsonServiceCode.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AIRPORT_TO_AIRPORT
public static final CargojsonServiceCode.Value AIRPORT_TO_AIRPORT
-
SERVICE_SHIPMENT
public static final CargojsonServiceCode.Value SERVICE_SHIPMENT
-
COMPANY_MATERIAL
public static final CargojsonServiceCode.Value COMPANY_MATERIAL
-
DOOR_TO_DOOR_SERVICE
public static final CargojsonServiceCode.Value DOOR_TO_DOOR_SERVICE
-
AIRPORT_TO_DOOR
public static final CargojsonServiceCode.Value AIRPORT_TO_DOOR
-
FLIGHT_SPECIFIC
public static final CargojsonServiceCode.Value FLIGHT_SPECIFIC
-
DOOR_TO_AIRPORT
public static final CargojsonServiceCode.Value DOOR_TO_AIRPORT
-
COMPANY_MAIL
public static final CargojsonServiceCode.Value COMPANY_MAIL
-
DIPLOMATIC_MAIL
public static final CargojsonServiceCode.Value DIPLOMATIC_MAIL
-
PRIORITY_SERVICE
public static final CargojsonServiceCode.Value PRIORITY_SERVICE
-
UNDOCUMENTED_K
public static final CargojsonServiceCode.Value UNDOCUMENTED_K
-
UNDOCUMENTED_L
public static final CargojsonServiceCode.Value UNDOCUMENTED_L
-
UNDOCUMENTED_M
public static final CargojsonServiceCode.Value UNDOCUMENTED_M
-
UNDOCUMENTED_N
public static final CargojsonServiceCode.Value UNDOCUMENTED_N
-
UNDOCUMENTED_O
public static final CargojsonServiceCode.Value UNDOCUMENTED_O
-
SMALL_PACKAGE_SERVICE
public static final CargojsonServiceCode.Value SMALL_PACKAGE_SERVICE
-
UNDOCUMENTED_Q
public static final CargojsonServiceCode.Value UNDOCUMENTED_Q
-
UNDOCUMENTED_R
public static final CargojsonServiceCode.Value UNDOCUMENTED_R
-
SUBSTITUTE_TRUCK
public static final CargojsonServiceCode.Value SUBSTITUTE_TRUCK
-
CHARTER
public static final CargojsonServiceCode.Value CHARTER
-
UNDOCUMENTED_U
public static final CargojsonServiceCode.Value UNDOCUMENTED_U
-
UNDOCUMENTED_V
public static final CargojsonServiceCode.Value UNDOCUMENTED_V
-
UNDOCUMENTED_W
public static final CargojsonServiceCode.Value UNDOCUMENTED_W
-
EXPRESS_SHIPMENTS
public static final CargojsonServiceCode.Value EXPRESS_SHIPMENTS
-
UNDOCUMENTED_Y
public static final CargojsonServiceCode.Value UNDOCUMENTED_Y
-
UNDOCUMENTED_Z
public static final CargojsonServiceCode.Value UNDOCUMENTED_Z
-
UNKNOWN
public static final CargojsonServiceCode.Value UNKNOWN
-
-
Method Detail
-
values
public static CargojsonServiceCode.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 (CargojsonServiceCode.Value c : CargojsonServiceCode.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 CargojsonServiceCode.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
-
-