Package com.chrt.api.types
Enum CargoTypeEnum1.Value
- java.lang.Object
-
- java.lang.Enum<CargoTypeEnum1.Value>
-
- com.chrt.api.types.CargoTypeEnum1.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CargoTypeEnum1.Value>
- Enclosing class:
- CargoTypeEnum1
public static enum CargoTypeEnum1.Value extends java.lang.Enum<CargoTypeEnum1.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AIRCRAFT_PARTSBLOODCHEMICALSCLOTHINGDOCUMENTSELECTRONICSFROZENHAZARDOUS_MATERIALSLAB_SPECIMENMANUFACTURING_EQUIPMENTMEDICAL_DEVICESMEDICAL_SUPPLIESORGANOTHERPERISHABLEPHARMACEUTICALSSPARE_PARTSTISSUEUNKNOWNUNSPECIFIED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CargoTypeEnum1.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CargoTypeEnum1.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SPARE_PARTS
public static final CargoTypeEnum1.Value SPARE_PARTS
-
BLOOD
public static final CargoTypeEnum1.Value BLOOD
-
LAB_SPECIMEN
public static final CargoTypeEnum1.Value LAB_SPECIMEN
-
ORGAN
public static final CargoTypeEnum1.Value ORGAN
-
TISSUE
public static final CargoTypeEnum1.Value TISSUE
-
MANUFACTURING_EQUIPMENT
public static final CargoTypeEnum1.Value MANUFACTURING_EQUIPMENT
-
AIRCRAFT_PARTS
public static final CargoTypeEnum1.Value AIRCRAFT_PARTS
-
MEDICAL_DEVICES
public static final CargoTypeEnum1.Value MEDICAL_DEVICES
-
MEDICAL_SUPPLIES
public static final CargoTypeEnum1.Value MEDICAL_SUPPLIES
-
PHARMACEUTICALS
public static final CargoTypeEnum1.Value PHARMACEUTICALS
-
DOCUMENTS
public static final CargoTypeEnum1.Value DOCUMENTS
-
ELECTRONICS
public static final CargoTypeEnum1.Value ELECTRONICS
-
CLOTHING
public static final CargoTypeEnum1.Value CLOTHING
-
CHEMICALS
public static final CargoTypeEnum1.Value CHEMICALS
-
HAZARDOUS_MATERIALS
public static final CargoTypeEnum1.Value HAZARDOUS_MATERIALS
-
PERISHABLE
public static final CargoTypeEnum1.Value PERISHABLE
-
FROZEN
public static final CargoTypeEnum1.Value FROZEN
-
OTHER
public static final CargoTypeEnum1.Value OTHER
-
UNSPECIFIED
public static final CargoTypeEnum1.Value UNSPECIFIED
-
UNKNOWN
public static final CargoTypeEnum1.Value UNKNOWN
-
-
Method Detail
-
values
public static CargoTypeEnum1.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 (CargoTypeEnum1.Value c : CargoTypeEnum1.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 CargoTypeEnum1.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
-
-