@Deprecated public static enum ProfileConfig.ENABLED_STATE extends Enum<ProfileConfig.ENABLED_STATE>
Example Usage: ENABLED_STATE.FALSE;
Enum Constant and Description |
---|
DEFAULT
Deprecated.
Default enable state configured on device
|
FALSE
Deprecated.
Disabled
|
TRUE
Deprecated.
Enabled
|
Modifier and Type | Method and Description |
---|---|
static ProfileConfig.ENABLED_STATE |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.ENABLED_STATE[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.ENABLED_STATE DEFAULT
public static final ProfileConfig.ENABLED_STATE FALSE
public static final ProfileConfig.ENABLED_STATE TRUE
public static ProfileConfig.ENABLED_STATE[] values()
for (ProfileConfig.ENABLED_STATE c : ProfileConfig.ENABLED_STATE.values()) System.out.println(c);
public static ProfileConfig.ENABLED_STATE 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