public static enum ItemChangeRecord.Action extends Enum<ItemChangeRecord.Action>
| Enum Constant and Description |
|---|
ITEM_ADDED |
ITEM_CHANGED |
ITEM_REMOVED |
| Modifier and Type | Method and Description |
|---|---|
static ItemChangeRecord.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemChangeRecord.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemChangeRecord.Action ITEM_ADDED
public static final ItemChangeRecord.Action ITEM_CHANGED
public static final ItemChangeRecord.Action ITEM_REMOVED
public static ItemChangeRecord.Action[] values()
for (ItemChangeRecord.Action c : ItemChangeRecord.Action.values()) System.out.println(c);
public static ItemChangeRecord.Action 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 © 2012–2018 1&1. All rights reserved.