public enum SpecialAttr extends Enum<SpecialAttr>
Enum Constant and Description |
---|
ASSIGNABLE
Applies to 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.
|
Modifier and Type | Method and 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.
|
public static final SpecialAttr NULL
public static final SpecialAttr TYPE
public static final SpecialAttr RESOURCES
public static final SpecialAttr GROUPS
public static final SpecialAttr RELATIONSHIPS
public static final SpecialAttr RELATIONSHIP_TYPES
public static final SpecialAttr ROLES
public static final SpecialAttr PRIVILEGES
public static final SpecialAttr DYNREALMS
public static final SpecialAttr MEMBER
public static final SpecialAttr ASSIGNABLE
public static SpecialAttr[] values()
for (SpecialAttr c : SpecialAttr.values()) System.out.println(c);
public static SpecialAttr valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<SpecialAttr>
public static Optional<SpecialAttr> fromString(String value)
Copyright © 2010–2023 The Apache Software Foundation. All rights reserved.