Enum NamespacePermission

    • Method Detail

      • values

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

        public static NamespacePermission 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 namespace permission values, as "Namespace." + permission name
      • getPermissionById

        public static NamespacePermission 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