public enum AndroidRequiredPasswordType extends java.lang.Enum<AndroidRequiredPasswordType>
| Enum Constant and Description |
|---|
ALPHABETIC
alphabetic
|
ALPHANUMERIC
alphanumeric
|
ALPHANUMERIC_WITH_SYMBOLS
alphanumeric With Symbols
|
ANY
any
|
DEVICE_DEFAULT
device Default
|
LOW_SECURITY_BIOMETRIC
low Security Biometric
|
NUMERIC
numeric
|
NUMERIC_COMPLEX
numeric Complex
|
UNEXPECTED_VALUE
For AndroidRequiredPasswordType values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static AndroidRequiredPasswordType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AndroidRequiredPasswordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AndroidRequiredPasswordType DEVICE_DEFAULT
public static final AndroidRequiredPasswordType ALPHABETIC
public static final AndroidRequiredPasswordType ALPHANUMERIC
public static final AndroidRequiredPasswordType ALPHANUMERIC_WITH_SYMBOLS
public static final AndroidRequiredPasswordType LOW_SECURITY_BIOMETRIC
public static final AndroidRequiredPasswordType NUMERIC
public static final AndroidRequiredPasswordType NUMERIC_COMPLEX
public static final AndroidRequiredPasswordType ANY
public static final AndroidRequiredPasswordType UNEXPECTED_VALUE
public static AndroidRequiredPasswordType[] values()
for (AndroidRequiredPasswordType c : AndroidRequiredPasswordType.values()) System.out.println(c);
public static AndroidRequiredPasswordType 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