public static enum JobInfo.WriteDisposition extends Enum<JobInfo.WriteDisposition>
Enum Constant and Description |
---|
WRITE_APPEND
Configures the job to append data to the table if it already exists.
|
WRITE_EMPTY
Configures the job to fail with a duplicate error if the table already exists.
|
WRITE_TRUNCATE
Configures the job to overwrite the table data if table already exists.
|
Modifier and Type | Method and Description |
---|---|
static JobInfo.WriteDisposition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobInfo.WriteDisposition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobInfo.WriteDisposition WRITE_TRUNCATE
public static final JobInfo.WriteDisposition WRITE_APPEND
public static final JobInfo.WriteDisposition WRITE_EMPTY
public static JobInfo.WriteDisposition[] values()
for (JobInfo.WriteDisposition c : JobInfo.WriteDisposition.values()) System.out.println(c);
public static JobInfo.WriteDisposition 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.