public enum AuthenticationMethod extends java.lang.Enum<AuthenticationMethod>
| Enum Constant and Description |
|---|
FEDERATED_ID |
FIDO |
ISSUER_CREDENTIALS |
NO_AUTHENTICATION |
OWN_CREDENTIALS |
THIRD_PARTY_AUTHENTICATION |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="no_authentication") public static final AuthenticationMethod NO_AUTHENTICATION
@SerializedName(value="own_credentials") public static final AuthenticationMethod OWN_CREDENTIALS
@SerializedName(value="federated_id") public static final AuthenticationMethod FEDERATED_ID
@SerializedName(value="issuer_credentials") public static final AuthenticationMethod ISSUER_CREDENTIALS
@SerializedName(value="third_party_authentication") public static final AuthenticationMethod THIRD_PARTY_AUTHENTICATION
@SerializedName(value="fido") public static final AuthenticationMethod FIDO
public static AuthenticationMethod[] values()
for (AuthenticationMethod c : AuthenticationMethod.values()) System.out.println(c);
public static AuthenticationMethod 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