public enum LockScreenStatus extends Enum<LockScreenStatus>
| Enum Constant and Description |
|---|
OFF
LockScreen is Not Required
|
OPTIONAL
LockScreen is Optional
|
REQUIRED
LockScreen is Required
|
| Modifier and Type | Method and Description |
|---|---|
static LockScreenStatus |
valueForString(String value) |
static LockScreenStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LockScreenStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LockScreenStatus REQUIRED
public static final LockScreenStatus OPTIONAL
public static final LockScreenStatus OFF
public static LockScreenStatus[] values()
for (LockScreenStatus c : LockScreenStatus.values()) System.out.println(c);
public static LockScreenStatus 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 nullpublic static LockScreenStatus valueForString(String value)