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