Package com.arcadedb.security
Enum SecurityDatabaseUser.ACCESS
- java.lang.Object
-
- java.lang.Enum<SecurityDatabaseUser.ACCESS>
-
- com.arcadedb.security.SecurityDatabaseUser.ACCESS
-
- All Implemented Interfaces:
Serializable
,Comparable<SecurityDatabaseUser.ACCESS>
- Enclosing interface:
- SecurityDatabaseUser
public static enum SecurityDatabaseUser.ACCESS extends Enum<SecurityDatabaseUser.ACCESS>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATE_RECORD
DELETE_RECORD
READ_RECORD
UPDATE_RECORD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SecurityDatabaseUser.ACCESS
valueOf(String name)
Returns the enum constant of this type with the specified name.static SecurityDatabaseUser.ACCESS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE_RECORD
public static final SecurityDatabaseUser.ACCESS CREATE_RECORD
-
READ_RECORD
public static final SecurityDatabaseUser.ACCESS READ_RECORD
-
UPDATE_RECORD
public static final SecurityDatabaseUser.ACCESS UPDATE_RECORD
-
DELETE_RECORD
public static final SecurityDatabaseUser.ACCESS DELETE_RECORD
-
-
Method Detail
-
values
public static SecurityDatabaseUser.ACCESS[] 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 (SecurityDatabaseUser.ACCESS c : SecurityDatabaseUser.ACCESS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SecurityDatabaseUser.ACCESS 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
-
-