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