public enum TokenResponseError extends Enum<TokenResponseError>
| Enum Constant and Description |
|---|
INVALID_CLIENT |
INVALID_GRANT |
INVALID_REQUEST |
UNSUPPORTED_RESPONSE_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static TokenResponseError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TokenResponseError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TokenResponseError INVALID_CLIENT
public static final TokenResponseError INVALID_GRANT
public static final TokenResponseError INVALID_REQUEST
public static final TokenResponseError UNSUPPORTED_RESPONSE_TYPE
public final String name
public static TokenResponseError[] values()
for (TokenResponseError c : TokenResponseError.values()) System.out.println(c);
public static TokenResponseError 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 © 2020–2023 Atlassian. All rights reserved.