Enum NamespacePermission
- All Implemented Interfaces:
Serializable
,Comparable<NamespacePermission>
Accumulo namespace permissions. Each permission has an associated byte ID.
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic NamespacePermission
getEquivalent
(SystemPermission permission) static NamespacePermission
getEquivalent
(TablePermission permission) byte
getId()
Gets the byte ID of this permission.static NamespacePermission
getPermissionById
(byte id) Gets the permission matching the given byte ID.Returns a list of printable permission values.static NamespacePermission
Returns the enum constant of this type with the specified name.static NamespacePermission[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
READ
-
WRITE
-
ALTER_NAMESPACE
-
GRANT
-
ALTER_TABLE
-
CREATE_TABLE
-
DROP_TABLE
-
BULK_IMPORT
-
DROP_NAMESPACE
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getId
public byte getId()Gets the byte ID of this permission.- Returns:
- byte ID
-
printableValues
Returns a list of printable permission values.- Returns:
- list of namespace permission values, as "Namespace." + permission name
-
getPermissionById
Gets the permission matching the given byte ID.- Parameters:
id
- byte ID- Returns:
- system permission
- Throws:
IndexOutOfBoundsException
- if the byte ID is invalid
-
getEquivalent
-
getEquivalent
-