public static enum Datastore.OperationType extends Enum<Datastore.OperationType>
Datastore operation types.| Enum Constant and Description |
|---|
DELETE
Delete operation
|
INSERT
Insert operation
|
UPDATE
Update operation
|
| Modifier and Type | Method and Description |
|---|---|
static Datastore.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Datastore.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Datastore.OperationType INSERT
public static final Datastore.OperationType UPDATE
public static final Datastore.OperationType DELETE
public static Datastore.OperationType[] values()
for (Datastore.OperationType c : Datastore.OperationType.values()) System.out.println(c);
public static Datastore.OperationType 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.