Enum SpecialAttr
- java.lang.Object
-
- java.lang.Enum<SpecialAttr>
-
- org.apache.syncope.common.lib.search.SpecialAttr
-
- All Implemented Interfaces:
Serializable
,Comparable<SpecialAttr>
public enum SpecialAttr extends Enum<SpecialAttr>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUX_CLASSES
Applies to users, groups and any objects.DYNREALMS
Applies to users, groups and any objects.GROUPS
Applies to users and any objects.MEMBER
Applies to groups.NULL
Applies to users, groups and any objects.PRIVILEGES
Applies to users.RELATIONSHIP_TYPES
Applies to users and any objects.RELATIONSHIPS
Applies to users and any objects.RESOURCES
Applies to users, groups and any objects.ROLES
Applies to users.TYPE
Applies to any objects.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Optional<SpecialAttr>
fromString(String value)
String
toString()
static SpecialAttr
valueOf(String name)
Returns the enum constant of this type with the specified name.static SpecialAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<SpecialAttr>
-
fromString
public static Optional<SpecialAttr> fromString(String value)
-
-