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