@Deprecated public static enum ProfileConfig.ILLUMINATION_MODE extends java.lang.Enum<ProfileConfig.ILLUMINATION_MODE>
Example Usage: ILLUMINATION_MODE.DEFAULT;
| Enum Constant and Description |
|---|
DEFAULT
Deprecated.
Default illumination configured on device
|
OFF
Deprecated.
External illumination is always is off
|
ON
Deprecated.
External illumination is always on
|
| Modifier and Type | Method and Description |
|---|---|
static ProfileConfig.ILLUMINATION_MODE |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.ILLUMINATION_MODE[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.ILLUMINATION_MODE DEFAULT
public static final ProfileConfig.ILLUMINATION_MODE OFF
public static final ProfileConfig.ILLUMINATION_MODE ON
public static ProfileConfig.ILLUMINATION_MODE[] values()
for (ProfileConfig.ILLUMINATION_MODE c : ProfileConfig.ILLUMINATION_MODE.values()) System.out.println(c);
public static ProfileConfig.ILLUMINATION_MODE 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