public enum Action extends Enum<Action>
| Enum Constant and Description |
|---|
CREATE_ACCESS_TOKEN |
CREATE_PROFILE |
CREATE_TENANT |
DELETE_ACCESS_TOKEN |
DELETE_PROFILE |
DELETE_TENANT |
GET_ACCESS_TOKEN |
GET_ALL_ACCESS_TOKENS |
GET_PROFILE |
GET_PROFILE_COUNT |
GET_PROFILE_LIST |
GET_TENANT |
UPDATE_PROFILE |
UPDATE_TENANT |
| Modifier and Type | Method and Description |
|---|---|
static Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Action GET_ACCESS_TOKEN
public static final Action GET_ALL_ACCESS_TOKENS
public static final Action CREATE_ACCESS_TOKEN
public static final Action DELETE_ACCESS_TOKEN
public static final Action GET_TENANT
public static final Action CREATE_TENANT
public static final Action UPDATE_TENANT
public static final Action DELETE_TENANT
public static final Action GET_PROFILE_COUNT
public static final Action GET_PROFILE_LIST
public static final Action GET_PROFILE
public static final Action CREATE_PROFILE
public static final Action UPDATE_PROFILE
public static final Action DELETE_PROFILE
public static Action[] values()
for (Action c : Action.values()) System.out.println(c);
public static Action 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 © 2017 CrafterCMS. All Rights Reserved.