public static enum StoreQuery.StoreQueryType extends Enum<StoreQuery.StoreQueryType>
| Enum Constant and Description |
|---|
DELETE |
FIND |
INSERT |
SELECT |
UPDATE |
UPDATE_OR_INSERT |
| Modifier and Type | Method and Description |
|---|---|
static StoreQuery.StoreQueryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoreQuery.StoreQueryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoreQuery.StoreQueryType INSERT
public static final StoreQuery.StoreQueryType DELETE
public static final StoreQuery.StoreQueryType UPDATE
public static final StoreQuery.StoreQueryType SELECT
public static final StoreQuery.StoreQueryType UPDATE_OR_INSERT
public static final StoreQuery.StoreQueryType FIND
public static StoreQuery.StoreQueryType[] values()
for (StoreQuery.StoreQueryType c : StoreQuery.StoreQueryType.values()) System.out.println(c);
public static StoreQuery.StoreQueryType 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 © 2018 WSO2. All rights reserved.