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