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