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 © 2019. All Rights Reserved.