Package io.vertx.tp.rbac.cv.em
Enum ActionLevel
- java.lang.Object
-
- java.lang.Enum<ActionLevel>
-
- io.vertx.tp.rbac.cv.em.ActionLevel
-
- All Implemented Interfaces:
Serializable,Comparable<ActionLevel>
public enum ActionLevel extends Enum<ActionLevel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDADD_IMPORTADD_INTEGRATIONADD_METADELETEDELETE_METADELETE_PURGEEDITEDIT_APPROVEEDIT_INTEGRATIONEDIT_METAFULLREADREAD_EXPORTREAD_INTEGRATIONREADONLY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActionLevelvalueOf(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.
-
-
-
Enum Constant Detail
-
READONLY
public static final ActionLevel READONLY
-
READ
public static final ActionLevel READ
-
READ_INTEGRATION
public static final ActionLevel READ_INTEGRATION
-
READ_EXPORT
public static final ActionLevel READ_EXPORT
-
ADD
public static final ActionLevel ADD
-
ADD_IMPORT
public static final ActionLevel ADD_IMPORT
-
ADD_INTEGRATION
public static final ActionLevel ADD_INTEGRATION
-
ADD_META
public static final ActionLevel ADD_META
-
EDIT_APPROVE
public static final ActionLevel EDIT_APPROVE
-
EDIT
public static final ActionLevel EDIT
-
EDIT_INTEGRATION
public static final ActionLevel EDIT_INTEGRATION
-
EDIT_META
public static final ActionLevel EDIT_META
-
DELETE
public static final ActionLevel DELETE
-
DELETE_PURGE
public static final ActionLevel DELETE_PURGE
-
DELETE_META
public static final ActionLevel DELETE_META
-
FULL
public static final ActionLevel FULL
-
-
Method Detail
-
values
public static ActionLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ActionLevel c : ActionLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActionLevel valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-