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