org.apache.accumulo.core.security
Enum TablePermission

java.lang.Object
  extended by java.lang.Enum<TablePermission>
      extended by 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
ALTER_TABLE
           
BULK_IMPORT
           
DROP_TABLE
           
GRANT
           
READ
           
WRITE
           
 
Method Summary
 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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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
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 name
NullPointerException - 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


Copyright © 2015 Apache Accumulo Project. All rights reserved.