public enum ActionLevel extends Enum<ActionLevel>
| Enum Constant and Description |
|---|
ADD |
ADD_IMPORT |
ADD_INTEGRATION |
ADD_META |
DELETE |
DELETE_META |
DELETE_PURGE |
EDIT |
EDIT_APPROVE |
EDIT_INTEGRATION |
EDIT_META |
FULL |
READ |
READ_EXPORT |
READ_INTEGRATION |
READONLY |
| Modifier and Type | Method and Description |
|---|---|
static ActionLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionLevel READONLY
public static final ActionLevel READ
public static final ActionLevel READ_INTEGRATION
public static final ActionLevel READ_EXPORT
public static final ActionLevel ADD
public static final ActionLevel ADD_IMPORT
public static final ActionLevel ADD_INTEGRATION
public static final ActionLevel ADD_META
public static final ActionLevel EDIT_APPROVE
public static final ActionLevel EDIT
public static final ActionLevel EDIT_INTEGRATION
public static final ActionLevel EDIT_META
public static final ActionLevel DELETE
public static final ActionLevel DELETE_PURGE
public static final ActionLevel DELETE_META
public static final ActionLevel FULL
public static ActionLevel[] values()
for (ActionLevel c : ActionLevel.values()) System.out.println(c);
public static ActionLevel 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.