public enum ItemAction extends Enum<ItemAction>
| Enum Constant and Description |
|---|
CLONED
The item has been cloned.
|
CREATED
The item has been created.
|
MOVED
The item has been moved.
|
RENAMED
The item has been renamed.
|
RESTORED
The item has been restored from trash.
|
UPDATED
The item has been updates.
|
| Modifier and Type | Method and Description |
|---|---|
static ItemAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemAction CREATED
public static final ItemAction RENAMED
public static final ItemAction MOVED
public static final ItemAction CLONED
public static final ItemAction UPDATED
public static final ItemAction RESTORED
public static ItemAction[] values()
for (ItemAction c : ItemAction.values()) System.out.println(c);
public static ItemAction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All Rights Reserved.