public static enum BigQueryIO.TypedRead.Method extends java.lang.Enum<BigQueryIO.TypedRead.Method>
Enum Constant and Description |
---|
DEFAULT
The default behavior if no method is explicitly set.
|
DIRECT_READ
Read the contents of a table directly using the BigQuery storage API.
|
EXPORT
Export data to Google Cloud Storage in Avro format and read data files from that location.
|
Modifier and Type | Method and Description |
---|---|
static BigQueryIO.TypedRead.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BigQueryIO.TypedRead.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BigQueryIO.TypedRead.Method DEFAULT
EXPORT
.public static final BigQueryIO.TypedRead.Method EXPORT
public static final BigQueryIO.TypedRead.Method DIRECT_READ
public static BigQueryIO.TypedRead.Method[] values()
for (BigQueryIO.TypedRead.Method c : BigQueryIO.TypedRead.Method.values()) System.out.println(c);
public static BigQueryIO.TypedRead.Method valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null