public static enum QueryJobConfiguration.Priority extends Enum<QueryJobConfiguration.Priority>
INTERACTIVE
.Enum Constant and Description |
---|
BATCH
Query is queued and started as soon as idle resources are available, usually within a few
minutes.
|
INTERACTIVE
Query is executed as soon as possible and count towards the concurrent rate limit and the daily
rate limit.
|
Modifier and Type | Method and Description |
---|---|
static QueryJobConfiguration.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryJobConfiguration.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryJobConfiguration.Priority INTERACTIVE
public static final QueryJobConfiguration.Priority BATCH
INTERACTIVE
.public static QueryJobConfiguration.Priority[] values()
for (QueryJobConfiguration.Priority c : QueryJobConfiguration.Priority.values()) System.out.println(c);
public static QueryJobConfiguration.Priority 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 Google LLC. All rights reserved.