public enum UserRecordType extends java.lang.Enum<UserRecordType>
| Modifier and Type | Method and Description |
|---|---|
static UserRecordType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserRecordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserRecordType DELETE_USER
public static final UserRecordType ADD_USER
public static final UserRecordType UPDATE_USER_PASSWORD
public static final UserRecordType ADD_PROFILE_METADATA_DEFINITION
public static final UserRecordType ADD_PROFILE_METADATA_VALUE
public static final UserRecordType DELETE_PROFILE_METADATA_DEFINITION
public static final UserRecordType DELETE_PROFILE_METADATA_VALUE
public static final UserRecordType DELETE_ROLE
public static final UserRecordType ADD_GROUP
public static final UserRecordType ADD_ROLE
public static final UserRecordType DELETE_GROUP
public static final UserRecordType DELETE_USER_MEMBERSHIP
public static final UserRecordType setUsersMemberships
public static final UserRecordType UPDATE_USER
public static final UserRecordType UPDATE_ROLE
public static final UserRecordType UPDATE_GROUP
public static final UserRecordType ADD_USER_MEMBERSHIP
public static final UserRecordType UPDTAE_PROFILE_METADATA_DEFINITION
public static final UserRecordType UPDATE_PROFILE_METADATA_VALUE
public static final UserRecordType UPDATE_USER_MEMBERSHIP
public static UserRecordType[] values()
for (UserRecordType c : UserRecordType.values()) System.out.println(c);
public static UserRecordType 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