Package org.molgenis.data.security.owned
Enum AbstractRowLevelSecurityRepositoryDecorator.Action
- java.lang.Object
-
- java.lang.Enum<AbstractRowLevelSecurityRepositoryDecorator.Action>
-
- org.molgenis.data.security.owned.AbstractRowLevelSecurityRepositoryDecorator.Action
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractRowLevelSecurityRepositoryDecorator.Action>
- Enclosing class:
- AbstractRowLevelSecurityRepositoryDecorator<E extends Entity>
public static enum AbstractRowLevelSecurityRepositoryDecorator.Action extends Enum<AbstractRowLevelSecurityRepositoryDecorator.Action>
The operation that is being performed on this repository.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractRowLevelSecurityRepositoryDecorator.ActionvalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractRowLevelSecurityRepositoryDecorator.Action[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COUNT
public static final AbstractRowLevelSecurityRepositoryDecorator.Action COUNT
-
READ
public static final AbstractRowLevelSecurityRepositoryDecorator.Action READ
-
CREATE
public static final AbstractRowLevelSecurityRepositoryDecorator.Action CREATE
-
UPDATE
public static final AbstractRowLevelSecurityRepositoryDecorator.Action UPDATE
-
DELETE
public static final AbstractRowLevelSecurityRepositoryDecorator.Action DELETE
-
-
Method Detail
-
values
public static AbstractRowLevelSecurityRepositoryDecorator.Action[] 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 (AbstractRowLevelSecurityRepositoryDecorator.Action c : AbstractRowLevelSecurityRepositoryDecorator.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractRowLevelSecurityRepositoryDecorator.Action 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
-
-