public enum USADriveIdHairColor extends java.lang.Enum<USADriveIdHairColor>
Enum for Hair Color in the US Driver's License
| Enum Constant and Description |
|---|
BALD
BAL - Bald.
|
BLACK
BLK - Black color
|
BLOND
BLN - Blonde color
|
BROWN
BRO - Brown color
|
GRAY
GRY - Gray color
|
NO_INFO
Not filled - equal to NONE
|
RED
RED - Red / Auburn
|
SANDY
SDY - Sandy color
|
UNKNOWN
UNK - Unknown / Other
|
WHITE
WHI - White color
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static USADriveIdHairColor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static USADriveIdHairColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final USADriveIdHairColor NO_INFO
Not filled - equal to NONE
public static final USADriveIdHairColor BALD
BAL - Bald.
public static final USADriveIdHairColor BLACK
BLK - Black color
public static final USADriveIdHairColor BLOND
BLN - Blonde color
public static final USADriveIdHairColor BROWN
BRO - Brown color
public static final USADriveIdHairColor GRAY
GRY - Gray color
public static final USADriveIdHairColor RED
RED - Red / Auburn
public static final USADriveIdHairColor SANDY
SDY - Sandy color
public static final USADriveIdHairColor WHITE
WHI - White color
public static final USADriveIdHairColor UNKNOWN
UNK - Unknown / Other
public static USADriveIdHairColor[] values()
for (USADriveIdHairColor c : USADriveIdHairColor.values()) System.out.println(c);
public static USADriveIdHairColor valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()