Package com.chrt.api.types
Enum CargojsonParticipantType.Value
- java.lang.Object
-
- java.lang.Enum<CargojsonParticipantType.Value>
-
- com.chrt.api.types.CargojsonParticipantType.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CargojsonParticipantType.Value>
- Enclosing class:
- CargojsonParticipantType
public static enum CargojsonParticipantType.Value extends java.lang.Enum<CargojsonParticipantType.Value>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CargojsonParticipantType.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CargojsonParticipantType.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AIR
public static final CargojsonParticipantType.Value AIR
-
APT
public static final CargojsonParticipantType.Value APT
-
AGT
public static final CargojsonParticipantType.Value AGT
-
BRK
public static final CargojsonParticipantType.Value BRK
-
CAG
public static final CargojsonParticipantType.Value CAG
-
CNE
public static final CargojsonParticipantType.Value CNE
-
CTM
public static final CargojsonParticipantType.Value CTM
-
DCL
public static final CargojsonParticipantType.Value DCL
-
DEC
public static final CargojsonParticipantType.Value DEC
-
FFW
public static final CargojsonParticipantType.Value FFW
-
GHA
public static final CargojsonParticipantType.Value GHA
-
PTT
public static final CargojsonParticipantType.Value PTT
-
SHP
public static final CargojsonParticipantType.Value SHP
-
TRK
public static final CargojsonParticipantType.Value TRK
-
UNKNOWN
public static final CargojsonParticipantType.Value UNKNOWN
-
-
Method Detail
-
values
public static CargojsonParticipantType.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 (CargojsonParticipantType.Value c : CargojsonParticipantType.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 CargojsonParticipantType.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
-
-