public enum AuthenticatorFlowStatus extends Enum<AuthenticatorFlowStatus> implements Serializable
Enum Constant and Description |
---|
FAIL_COMPLETED |
INCOMPLETE |
SUCCESS_COMPLETED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static AuthenticatorFlowStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticatorFlowStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticatorFlowStatus SUCCESS_COMPLETED
public static final AuthenticatorFlowStatus FAIL_COMPLETED
public static final AuthenticatorFlowStatus INCOMPLETE
public static final AuthenticatorFlowStatus UNKNOWN
public static AuthenticatorFlowStatus[] values()
for (AuthenticatorFlowStatus c : AuthenticatorFlowStatus.values()) System.out.println(c);
public static AuthenticatorFlowStatus 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 nullCopyright © 2015 WSO2. All rights reserved.