public static enum JobConfiguration.Type extends Enum<JobConfiguration.Type>
Enum Constant and Description |
---|
COPY
A Copy Job copies an existing table to another new or existing table.
|
EXTRACT
An Extract Job exports a BigQuery table to Google Cloud Storage.
|
LOAD
A Load Job loads data from one of several formats into a table.
|
QUERY
A Query Job runs a query against BigQuery data.
|
Modifier and Type | Method and Description |
---|---|
static JobConfiguration.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobConfiguration.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobConfiguration.Type COPY
JobConfiguration
for this type are implemented by CopyJobConfiguration
.public static final JobConfiguration.Type EXTRACT
JobConfiguration
for this type are implemented by ExtractJobConfiguration
.public static final JobConfiguration.Type LOAD
JobConfiguration
for this type are implemented by LoadJobConfiguration
.public static final JobConfiguration.Type QUERY
JobConfiguration
for
this type are implemented by QueryJobConfiguration
.public static JobConfiguration.Type[] values()
for (JobConfiguration.Type c : JobConfiguration.Type.values()) System.out.println(c);
public static JobConfiguration.Type 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.