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