public enum TokenResponseErrorDescription extends Enum<TokenResponseErrorDescription>
| Enum Constant and Description |
|---|
INVALID_CLIENT_ID |
INVALID_CODE |
INVALID_REDIRECT_URI |
| Modifier and Type | Field and Description |
|---|---|
TokenResponseError |
error |
String |
name |
| Modifier and Type | Method and Description |
|---|---|
static TokenResponseErrorDescription |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TokenResponseErrorDescription[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TokenResponseErrorDescription INVALID_CLIENT_ID
public static final TokenResponseErrorDescription INVALID_REDIRECT_URI
public static final TokenResponseErrorDescription INVALID_CODE
public final TokenResponseError error
public final String name
public static TokenResponseErrorDescription[] values()
for (TokenResponseErrorDescription c : TokenResponseErrorDescription.values()) System.out.println(c);
public static TokenResponseErrorDescription 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.