public enum VerificationMethod extends Enum<VerificationMethod>
Enum Constant and Description |
---|
BIOMETRICS
Authenticate using biometric/bio-fingerprint
|
DEVICE_KEYGUARD
Authenticate using system device keyguard (PIN/Pattern)
|
Modifier and Type | Method and Description |
---|---|
static VerificationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VerificationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerificationMethod BIOMETRICS
public static final VerificationMethod DEVICE_KEYGUARD
public static VerificationMethod[] values()
for (VerificationMethod c : VerificationMethod.values()) System.out.println(c);
public static VerificationMethod 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