Package com.chrt.api.types
Enum CargojsonAccountingInformationIdentifier.Value
- java.lang.Object
-
- java.lang.Enum<CargojsonAccountingInformationIdentifier.Value>
-
- com.chrt.api.types.CargojsonAccountingInformationIdentifier.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CargojsonAccountingInformationIdentifier.Value>
- Enclosing class:
- CargojsonAccountingInformationIdentifier
public static enum CargojsonAccountingInformationIdentifier.Value extends java.lang.Enum<CargojsonAccountingInformationIdentifier.Value>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CargojsonAccountingInformationIdentifier.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CargojsonAccountingInformationIdentifier.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREDIT_CARD_NUMBER
public static final CargojsonAccountingInformationIdentifier.Value CREDIT_CARD_NUMBER
-
CREDIT_CARD_EXPIRY_DATE
public static final CargojsonAccountingInformationIdentifier.Value CREDIT_CARD_EXPIRY_DATE
-
CREDIT_CARD_ISSUANCE_NAME
public static final CargojsonAccountingInformationIdentifier.Value CREDIT_CARD_ISSUANCE_NAME
-
GENERAL_INFORMATION
public static final CargojsonAccountingInformationIdentifier.Value GENERAL_INFORMATION
-
GOVERNMENT_BILL_OF_LADING
public static final CargojsonAccountingInformationIdentifier.Value GOVERNMENT_BILL_OF_LADING
-
MISCELLANEOUS_CHARGE_ORDER
public static final CargojsonAccountingInformationIdentifier.Value MISCELLANEOUS_CHARGE_ORDER
-
MODE_OF_SETTLEMENT
public static final CargojsonAccountingInformationIdentifier.Value MODE_OF_SETTLEMENT
-
RETURN_TO_ORIGIN
public static final CargojsonAccountingInformationIdentifier.Value RETURN_TO_ORIGIN
-
SHIPPERS_REFERENCE_NUMBER
public static final CargojsonAccountingInformationIdentifier.Value SHIPPERS_REFERENCE_NUMBER
-
UNKNOWN
public static final CargojsonAccountingInformationIdentifier.Value UNKNOWN
-
-
Method Detail
-
values
public static CargojsonAccountingInformationIdentifier.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 (CargojsonAccountingInformationIdentifier.Value c : CargojsonAccountingInformationIdentifier.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 CargojsonAccountingInformationIdentifier.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
-
-