public enum AuthenticationState extends java.lang.Enum<AuthenticationState>
| Enum Constant and Description |
|---|
FAILED |
PROCESSING |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="AUTHENTICATE_PROCESSING") public static final AuthenticationState PROCESSING
@SerializedName(value="AUTHENTICATE_SUCCESS") public static final AuthenticationState SUCCESS
@SerializedName(value="AUTHENTICATE_FAILED") public static final AuthenticationState FAILED
public static AuthenticationState[] values()
for (AuthenticationState c : AuthenticationState.values()) System.out.println(c);
public static AuthenticationState 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