Enum AclPermissionType

    • Enum Constant Detail

      • UNKNOWN

        public static final AclPermissionType UNKNOWN
        Represents any AclPermissionType which this client cannot understand, perhaps because this client is too old.
      • ANY

        public static final AclPermissionType ANY
        In a filter, matches any AclPermissionType.
    • Method Detail

      • values

        public static AclPermissionType[] 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 (AclPermissionType c : AclPermissionType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AclPermissionType 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
      • fromString

        public static AclPermissionType fromString​(String str)
        Parse the given string as an ACL permission.
        Parameters:
        str - The string to parse.
        Returns:
        The AclPermissionType, or UNKNOWN if the string could not be matched.
      • fromCode

        public static AclPermissionType fromCode​(byte code)
        Return the AclPermissionType with the provided code or `AclPermissionType.UNKNOWN` if one cannot be found.
      • code

        public byte code()
        Return the code of this permission type.
      • isUnknown

        public boolean isUnknown()
        Return true if this permission type is UNKNOWN.