public static enum ConsistentColor.Deficiency extends java.lang.Enum<ConsistentColor.Deficiency>
| Enum Constant and Description |
|---|
blueBlindness
Activate color correction for users suffering from blue-blindness.
|
none
Do not apply measurements for color vision deficiency correction.
|
redGreenBlindness
Activate color correction for users suffering from red-green-blindness.
|
| Modifier and Type | Method and Description |
|---|---|
static ConsistentColor.Deficiency |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConsistentColor.Deficiency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsistentColor.Deficiency none
public static final ConsistentColor.Deficiency redGreenBlindness
public static final ConsistentColor.Deficiency blueBlindness
public static ConsistentColor.Deficiency[] values()
for (ConsistentColor.Deficiency c : ConsistentColor.Deficiency.values()) System.out.println(c);
public static ConsistentColor.Deficiency 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 null