public enum BulkActionUserStatus extends java.lang.Enum<BulkActionUserStatus> implements HasMessageKey
| Enum Constant and Description |
|---|
CANCELED
The bulk action was canceled while this user was still pending
|
ERROR
There was an error when processing this user
|
PENDING
The action has still not processed this user
|
SKIPPED
This user was skipped as the action didn't apply to this user
(for example, changing the value of a custom field not enabled for this user)
|
SUCCESS
The action has successfully processed this user
|
| Modifier and Type | Method and Description |
|---|---|
MessageKey |
getMessageKey() |
static EnumMessageKeyResolver<BulkActionUserStatus> |
resolverForAffectedUsers()
Returns an
EnumMessageKeyResolver for messages of affected users with each status |
static BulkActionUserStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BulkActionUserStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BulkActionUserStatus SUCCESS
public static final BulkActionUserStatus SKIPPED
public static final BulkActionUserStatus ERROR
public static final BulkActionUserStatus PENDING
public static final BulkActionUserStatus CANCELED
public static BulkActionUserStatus[] values()
for (BulkActionUserStatus c : BulkActionUserStatus.values()) System.out.println(c);
public static BulkActionUserStatus 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 nullpublic static EnumMessageKeyResolver<BulkActionUserStatus> resolverForAffectedUsers()
EnumMessageKeyResolver for messages of affected users with each statuspublic MessageKey getMessageKey()
getMessageKey in interface HasMessageKey