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