Enum Class PermissionLevel

java.lang.Object
java.lang.Enum<PermissionLevel>
com.kingsrook.qqq.backend.core.model.metadata.permissions.PermissionLevel
All Implemented Interfaces:
Serializable, Comparable<PermissionLevel>, Constable

public enum PermissionLevel extends Enum<PermissionLevel>
  • Enum Constant Details

    • NOT_PROTECTED

      public static final PermissionLevel NOT_PROTECTED
    • HAS_ACCESS_PERMISSION

      public static final PermissionLevel HAS_ACCESS_PERMISSION
    • READ_WRITE_PERMISSIONS

      public static final PermissionLevel READ_WRITE_PERMISSIONS
    • READ_INSERT_EDIT_DELETE_PERMISSIONS

      public static final PermissionLevel READ_INSERT_EDIT_DELETE_PERMISSIONS
  • Method Details

    • values

      public static PermissionLevel[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PermissionLevel valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null