Enum Class SpecialAttr

java.lang.Object
java.lang.Enum<SpecialAttr>
org.apache.syncope.common.lib.search.SpecialAttr
All Implemented Interfaces:
Serializable, Comparable<SpecialAttr>, Constable

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

    • 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 Details

    • values

      public static SpecialAttr[] 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 SpecialAttr 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<SpecialAttr>
    • fromString

      public static Optional<SpecialAttr> fromString(String value)