public enum AuthFlowType extends java.lang.Enum<AuthFlowType>
| Enum Constant and Description |
|---|
CUSTOM_AUTH
type for CUSTOM_AUTH.
|
USER_PASSWORD_AUTH
type for USER_PASSWORD_AUTH.
|
USER_SRP_AUTH
type for USER_SRP_AUTH.
|
| Modifier and Type | Method and Description |
|---|---|
static AuthFlowType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthFlowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthFlowType USER_SRP_AUTH
public static final AuthFlowType CUSTOM_AUTH
public static final AuthFlowType USER_PASSWORD_AUTH
public static AuthFlowType[] values()
for (AuthFlowType c : AuthFlowType.values()) System.out.println(c);
public static AuthFlowType 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