public static enum StoreEvent.Type extends Enum<StoreEvent.Type>
| Enum Constant and Description |
|---|
Create
Creation.
|
Delete
Delete.
|
Update
Update.
|
| Modifier and Type | Method and Description |
|---|---|
static StoreEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoreEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoreEvent.Type Create
public static final StoreEvent.Type Update
public static final StoreEvent.Type Delete
public static StoreEvent.Type[] values()
for (StoreEvent.Type c : StoreEvent.Type.values()) System.out.println(c);
public static StoreEvent.Type 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 © 2016. All Rights Reserved.