Enum SpecialAttr

    • Enum Constant Detail

      • NULL

        public static final SpecialAttr NULL
        Applies to users, groups and any objects.
      • TYPE

        public static final SpecialAttr TYPE
        Applies to any objects.
      • AUX_CLASSES

        public static final SpecialAttr AUX_CLASSES
        Applies to users, groups and any objects.
      • RESOURCES

        public static final SpecialAttr RESOURCES
        Applies to users, groups and any objects.
      • GROUPS

        public static final SpecialAttr GROUPS
        Applies to users and any objects.
      • RELATIONSHIPS

        public static final SpecialAttr RELATIONSHIPS
        Applies to users and any objects.
      • RELATIONSHIP_TYPES

        public static final SpecialAttr RELATIONSHIP_TYPES
        Applies to users and any objects.
      • ROLES

        public static final SpecialAttr ROLES
        Applies to users.
      • PRIVILEGES

        public static final SpecialAttr PRIVILEGES
        Applies to users.
      • DYNREALMS

        public static final SpecialAttr DYNREALMS
        Applies to users, groups and any objects.
      • MEMBER

        public static final SpecialAttr MEMBER
        Applies to groups.
    • Method Detail

      • values

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

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