Enum SystemPermission

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

public enum SystemPermission extends Enum<SystemPermission>
Accumulo system permissions. Each permission has an associated byte ID.
  • Enum Constant Details

  • Method Details

    • values

      public static SystemPermission[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      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()
      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 system permission values, as "System." + permission name
    • getPermissionById

      public static SystemPermission getPermissionById(byte id)
      Gets the permission matching the given byte ID.
      Parameters:
      id - byte ID
      Returns:
      system permission
      Throws:
      IndexOutOfBoundsException - if the byte ID is invalid