public enum UserManagementProfileAbilities extends java.lang.Enum<UserManagementProfileAbilities>
Enum Constant and Description |
---|
ALTER_GROUPS |
ALTER_USERS |
Modifier and Type | Method and Description |
---|---|
static UserManagementProfileAbilities |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserManagementProfileAbilities[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserManagementProfileAbilities ALTER_USERS
public static final UserManagementProfileAbilities ALTER_GROUPS
public static UserManagementProfileAbilities[] values()
for (UserManagementProfileAbilities c : UserManagementProfileAbilities.values()) System.out.println(c);
public static UserManagementProfileAbilities valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null