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