Package com.chrt.api.types
Enum DriverComplianceDocumentTypeEnum1.Value
- java.lang.Object
-
- java.lang.Enum<DriverComplianceDocumentTypeEnum1.Value>
-
- com.chrt.api.types.DriverComplianceDocumentTypeEnum1.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DriverComplianceDocumentTypeEnum1.Value>
- Enclosing class:
- DriverComplianceDocumentTypeEnum1
public static enum DriverComplianceDocumentTypeEnum1.Value extends java.lang.Enum<DriverComplianceDocumentTypeEnum1.Value>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DriverComplianceDocumentTypeEnum1.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DriverComplianceDocumentTypeEnum1.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRIVERS_LICENSE
public static final DriverComplianceDocumentTypeEnum1.Value DRIVERS_LICENSE
-
COMMERCIAL_DRIVERS_LICENSE
public static final DriverComplianceDocumentTypeEnum1.Value COMMERCIAL_DRIVERS_LICENSE
-
TSA_STA
public static final DriverComplianceDocumentTypeEnum1.Value TSA_STA
-
IATA_DANGEROUS_GOODS
public static final DriverComplianceDocumentTypeEnum1.Value IATA_DANGEROUS_GOODS
-
DOT_HAZMAT
public static final DriverComplianceDocumentTypeEnum1.Value DOT_HAZMAT
-
CDL_HAZMAT_ENDORSEMENT
public static final DriverComplianceDocumentTypeEnum1.Value CDL_HAZMAT_ENDORSEMENT
-
OSHA_BLOODBORNE_PATHOGENS
public static final DriverComplianceDocumentTypeEnum1.Value OSHA_BLOODBORNE_PATHOGENS
-
MEDICAL_SPECIMEN
public static final DriverComplianceDocumentTypeEnum1.Value MEDICAL_SPECIMEN
-
CLINICAL_LAB_SPECIMEN
public static final DriverComplianceDocumentTypeEnum1.Value CLINICAL_LAB_SPECIMEN
-
PATHOLOGY
public static final DriverComplianceDocumentTypeEnum1.Value PATHOLOGY
-
BLOOD_PRODUCTS
public static final DriverComplianceDocumentTypeEnum1.Value BLOOD_PRODUCTS
-
PHARMACEUTICAL
public static final DriverComplianceDocumentTypeEnum1.Value PHARMACEUTICAL
-
COLD_CHAIN
public static final DriverComplianceDocumentTypeEnum1.Value COLD_CHAIN
-
VEHICLE_REGISTRATION
public static final DriverComplianceDocumentTypeEnum1.Value VEHICLE_REGISTRATION
-
VEHICLE_INSPECTION
public static final DriverComplianceDocumentTypeEnum1.Value VEHICLE_INSPECTION
-
BACKGROUND_CHECK
public static final DriverComplianceDocumentTypeEnum1.Value BACKGROUND_CHECK
-
MVR_CHECK
public static final DriverComplianceDocumentTypeEnum1.Value MVR_CHECK
-
UNKNOWN
public static final DriverComplianceDocumentTypeEnum1.Value UNKNOWN
-
-
Method Detail
-
values
public static DriverComplianceDocumentTypeEnum1.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 (DriverComplianceDocumentTypeEnum1.Value c : DriverComplianceDocumentTypeEnum1.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 DriverComplianceDocumentTypeEnum1.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
-
-