public enum UserFlowType extends java.lang.Enum<UserFlowType>
| Enum Constant and Description |
|---|
PASSWORD_RESET
password Reset
|
PROFILE_UPDATE
profile Update
|
RESOURCE_OWNER
resource Owner
|
SIGN_IN
sign In
|
SIGN_UP
sign Up
|
SIGN_UP_OR_SIGN_IN
sign Up Or Sign In
|
UNEXPECTED_VALUE
For UserFlowType values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static UserFlowType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserFlowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserFlowType SIGN_UP
public static final UserFlowType SIGN_IN
public static final UserFlowType SIGN_UP_OR_SIGN_IN
public static final UserFlowType PASSWORD_RESET
public static final UserFlowType PROFILE_UPDATE
public static final UserFlowType RESOURCE_OWNER
public static final UserFlowType UNKNOWN_FUTURE_VALUE
public static final UserFlowType UNEXPECTED_VALUE
public static UserFlowType[] values()
for (UserFlowType c : UserFlowType.values()) System.out.println(c);
public static UserFlowType 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