Enum TablePermission
- java.lang.Object
-
- java.lang.Enum<TablePermission>
-
- org.apache.accumulo.core.security.TablePermission
-
- All Implemented Interfaces:
Serializable
,Comparable<TablePermission>
public enum TablePermission extends Enum<TablePermission>
Accumulo table permissions. Each permission has an associated byte ID.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALTER_TABLE
BULK_IMPORT
DROP_TABLE
GET_SUMMARIES
GRANT
READ
WRITE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte
getId()
Gets the byte ID of this permission.static TablePermission
getPermissionById(byte id)
Gets the permission matching the given byte ID.static List<String>
printableValues()
Returns a list of printable permission values.static TablePermission
valueOf(String name)
Returns the enum constant of this type with the specified name.static TablePermission[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READ
public static final TablePermission READ
-
WRITE
public static final TablePermission WRITE
-
BULK_IMPORT
public static final TablePermission BULK_IMPORT
-
ALTER_TABLE
public static final TablePermission ALTER_TABLE
-
GRANT
public static final TablePermission GRANT
-
DROP_TABLE
public static final TablePermission DROP_TABLE
-
GET_SUMMARIES
public static final TablePermission GET_SUMMARIES
-
-
Method Detail
-
values
public static TablePermission[] 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 (TablePermission c : TablePermission.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TablePermission 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
-
getId
public byte getId()
Gets the byte ID of this permission.- Returns:
- byte ID
-
printableValues
public static List<String> printableValues()
Returns a list of printable permission values.- Returns:
- list of table permission values, as "Table." + permission name
-
getPermissionById
public static TablePermission getPermissionById(byte id)
Gets the permission matching the given byte ID.- Parameters:
id
- byte ID- Returns:
- table permission
- Throws:
IndexOutOfBoundsException
- if the byte ID is invalid
-
-