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