@Beta public enum UserStoreAccess extends java.lang.Enum<UserStoreAccess>
Enum Constant and Description |
---|
ADMINISTRATOR |
CREATE_USERS |
READ |
USER_STORE_MANAGER |
WRITE_USERS |
Modifier and Type | Method and Description |
---|---|
static UserStoreAccess |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserStoreAccess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserStoreAccess READ
public static final UserStoreAccess CREATE_USERS
public static final UserStoreAccess WRITE_USERS
public static final UserStoreAccess USER_STORE_MANAGER
public static final UserStoreAccess ADMINISTRATOR
public static UserStoreAccess[] values()
for (UserStoreAccess c : UserStoreAccess.values()) System.out.println(c);
public static UserStoreAccess 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