@Deprecated public static enum ProfileConfig.ILLUMINATION_MODE extends 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(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null