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