public enum USADriveIdEyeColor extends java.lang.Enum<USADriveIdEyeColor>
Enum for Eye Color in the US Driver's License
| Enum Constant and Description |
|---|
BLACK
BLK - Black or very dark brown.
|
BLUE
BLU - Blue color.
|
BROWN
BRO - Brown, including amber.
|
GRAY
GRY - Gray color.
|
GREEN
GRN - Green color.
|
HAZEL
HAZ - Hazel, a mixture of colors, most commonly green and brown.
|
MAROON
MAR - Maroon color.
|
MULTI_COLOR
DIC - Dichromatic or multicolor, of one or both eyes.
|
NO_INFO
Not filled - equal to NONE
|
PINK
PNK - Pink or albino
|
UNKNOWN
UNK - Unknown / Other
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static USADriveIdEyeColor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static USADriveIdEyeColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final USADriveIdEyeColor NO_INFO
Not filled - equal to NONE
public static final USADriveIdEyeColor BLACK
BLK - Black or very dark brown.
public static final USADriveIdEyeColor BLUE
BLU - Blue color.
public static final USADriveIdEyeColor BROWN
BRO - Brown, including amber.
public static final USADriveIdEyeColor MULTI_COLOR
DIC - Dichromatic or multicolor, of one or both eyes.
public static final USADriveIdEyeColor GRAY
GRY - Gray color.
public static final USADriveIdEyeColor GREEN
GRN - Green color.
public static final USADriveIdEyeColor HAZEL
HAZ - Hazel, a mixture of colors, most commonly green and brown.
public static final USADriveIdEyeColor MAROON
MAR - Maroon color.
public static final USADriveIdEyeColor PINK
PNK - Pink or albino
public static final USADriveIdEyeColor UNKNOWN
UNK - Unknown / Other
public static USADriveIdEyeColor[] values()
for (USADriveIdEyeColor c : USADriveIdEyeColor.values()) System.out.println(c);
public static USADriveIdEyeColor 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()