public static enum ItemDataSource.ItemAction extends Enum<ItemDataSource.ItemAction>
| Enum Constant and Description |
|---|
ADDED
An item was added
|
LOADED
An item was loaded
|
MODIFIED
An item was modified
|
REFRESHED
An item was modified
|
REMOVED
An item was removed
|
SET_CHANGED
The item set changed
|
| Modifier and Type | Method and Description |
|---|---|
static ItemDataSource.ItemAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemDataSource.ItemAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemDataSource.ItemAction LOADED
public static final ItemDataSource.ItemAction ADDED
public static final ItemDataSource.ItemAction MODIFIED
public static final ItemDataSource.ItemAction REFRESHED
public static final ItemDataSource.ItemAction REMOVED
public static final ItemDataSource.ItemAction SET_CHANGED
public static ItemDataSource.ItemAction[] values()
for (ItemDataSource.ItemAction c : ItemDataSource.ItemAction.values()) System.out.println(c);
public static ItemDataSource.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 © 2019 The Holon Platform. All rights reserved.