public enum AuthenticatorType extends Enum<AuthenticatorType>
Enum Constant and Description |
---|
APP |
EMAIL |
FEDERATED |
PASSWORD |
PHONE |
SDK_UNKNOWN |
SECURITY_KEY |
SECURITY_QUESTION |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static AuthenticatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticatorType APP
public static final AuthenticatorType PASSWORD
public static final AuthenticatorType SECURITY_QUESTION
public static final AuthenticatorType PHONE
public static final AuthenticatorType EMAIL
public static final AuthenticatorType SECURITY_KEY
public static final AuthenticatorType FEDERATED
public static final AuthenticatorType SDK_UNKNOWN
public static AuthenticatorType[] values()
for (AuthenticatorType c : AuthenticatorType.values()) System.out.println(c);
public static AuthenticatorType 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 String toString()
toString
in class Enum<AuthenticatorType>
Copyright © 2017–2023 Okta. All rights reserved.