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:
java.io.Serializable, java.lang.Comparable<TablePermission>

public enum TablePermission
extends java.lang.Enum<TablePermission>


Enum Constant Summary
ALTER_TABLE
           
BULK_IMPORT
           
DROP_TABLE
           
GRANT
           
READ
           
WRITE
           
 
Method Summary
 byte getId()
           
static TablePermission getPermissionById(byte id)
           
static java.util.List<java.lang.String> printableValues()
           
static TablePermission valueOf(java.lang.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(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getId

public byte getId()

printableValues

public static java.util.List<java.lang.String> printableValues()

getPermissionById

public static TablePermission getPermissionById(byte id)


Copyright © 2012 The Apache Software Foundation. All Rights Reserved.