Enum Class NamespacePermission
- All Implemented Interfaces:
Serializable,Comparable<NamespacePermission>,Constable
Accumulo namespace permissions. Each permission has an associated byte ID.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic NamespacePermissiongetEquivalent(SystemPermission permission) static NamespacePermissiongetEquivalent(TablePermission permission) bytegetId()Gets the byte ID of this permission.static NamespacePermissiongetPermissionById(byte id) Gets the permission matching the given byte ID.Returns a list of printable permission values.static NamespacePermissionReturns the enum constant of this class with the specified name.static NamespacePermission[]values()Returns an array containing the constants of this enum class, 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 class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class 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
-