@Deprecated public static enum ProfileConfig.POWER_MODE extends java.lang.Enum<ProfileConfig.POWER_MODE>
Example Usage: POWER_MODE.DEFAULT;
Enum Constant and Description |
---|
ALWAYS_ON
Deprecated.
Highest power, fastest performance.
|
DEFAULT
Deprecated.
Default linear security level configured on device.
|
HIGH
Deprecated.
High power, and excellent performance.
|
LOW
Deprecated.
Lowest power, but slowest performance.
|
OPTIMIZED
Deprecated.
Power level adjusts with scanning usage (Defalt).
|
Modifier and Type | Method and Description |
---|---|
static ProfileConfig.POWER_MODE |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.POWER_MODE[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.POWER_MODE DEFAULT
public static final ProfileConfig.POWER_MODE LOW
public static final ProfileConfig.POWER_MODE OPTIMIZED
public static final ProfileConfig.POWER_MODE HIGH
public static final ProfileConfig.POWER_MODE ALWAYS_ON
public static ProfileConfig.POWER_MODE[] values()
for (ProfileConfig.POWER_MODE c : ProfileConfig.POWER_MODE.values()) System.out.println(c);
public static ProfileConfig.POWER_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