org.apache.accumulo.core.security
Enum SystemPermission

java.lang.Object
  extended by java.lang.Enum<SystemPermission>
      extended by org.apache.accumulo.core.security.SystemPermission
All Implemented Interfaces:
Serializable, Comparable<SystemPermission>

public enum SystemPermission
extends Enum<SystemPermission>


Enum Constant Summary
ALTER_TABLE
           
ALTER_USER
           
CREATE_TABLE
           
CREATE_USER
           
DROP_TABLE
           
DROP_USER
           
GRANT
           
SYSTEM
           
 
Method Summary
 byte getId()
           
static SystemPermission getPermissionById(byte id)
           
static List<String> printableValues()
           
static SystemPermission valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SystemPermission[] 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

GRANT

public static final SystemPermission GRANT

CREATE_TABLE

public static final SystemPermission CREATE_TABLE

DROP_TABLE

public static final SystemPermission DROP_TABLE

ALTER_TABLE

public static final SystemPermission ALTER_TABLE

CREATE_USER

public static final SystemPermission CREATE_USER

DROP_USER

public static final SystemPermission DROP_USER

ALTER_USER

public static final SystemPermission ALTER_USER

SYSTEM

public static final SystemPermission SYSTEM
Method Detail

values

public static SystemPermission[] 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 (SystemPermission c : SystemPermission.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SystemPermission 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()

printableValues

public static List<String> printableValues()

getPermissionById

public static SystemPermission getPermissionById(byte id)


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