public enum UserAuthenticationMethod extends java.lang.Enum<UserAuthenticationMethod>
| Enum Constant and Description |
|---|
BIOMETRICS
The user must present a biometric trait to authenticate.
|
PASSWORD
A password must be entered to authenticate.
|
UNDEFINED
The method is undefined.
|
| Modifier and Type | Method and Description |
|---|---|
static UserAuthenticationMethod |
fromValue(int value)
Creates an enumeration value from int.
|
int |
getValue()
Gets the enumeration value as int.
|
static UserAuthenticationMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserAuthenticationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserAuthenticationMethod UNDEFINED
public static final UserAuthenticationMethod PASSWORD
public static final UserAuthenticationMethod BIOMETRICS
public static UserAuthenticationMethod[] values()
for (UserAuthenticationMethod c : UserAuthenticationMethod.values()) System.out.println(c);
public static UserAuthenticationMethod 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 nullpublic int getValue()
public static UserAuthenticationMethod fromValue(int value)
value - The int value.Copyright © 2020-2030, id3 Technologies. All rights reserved. eu.id3.bioseal