Package com.google.cloud.bigquery.spi.v2
Enum BigQueryRpc.Option
- java.lang.Object
-
- java.lang.Enum<BigQueryRpc.Option>
-
- com.google.cloud.bigquery.spi.v2.BigQueryRpc.Option
-
- All Implemented Interfaces:
Serializable
,Comparable<BigQueryRpc.Option>
- Enclosing interface:
- BigQueryRpc
public static enum BigQueryRpc.Option extends Enum<BigQueryRpc.Option>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_DATASETS
ALL_USERS
AUTODETECT_SCHEMA
DELETE_CONTENTS
FIELDS
LABEL_FILTER
MAX_CREATION_TIME
MAX_RESULTS
MIN_CREATION_TIME
PAGE_TOKEN
PARENT_JOB_ID
REQUESTED_POLICY_VERSION
START_INDEX
STATE_FILTER
TABLE_METADATA_VIEW
TIMEOUT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
value()
static BigQueryRpc.Option
valueOf(String name)
Returns the enum constant of this type with the specified name.static BigQueryRpc.Option[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIELDS
public static final BigQueryRpc.Option FIELDS
-
DELETE_CONTENTS
public static final BigQueryRpc.Option DELETE_CONTENTS
-
ALL_DATASETS
public static final BigQueryRpc.Option ALL_DATASETS
-
ALL_USERS
public static final BigQueryRpc.Option ALL_USERS
-
AUTODETECT_SCHEMA
public static final BigQueryRpc.Option AUTODETECT_SCHEMA
-
LABEL_FILTER
public static final BigQueryRpc.Option LABEL_FILTER
-
MIN_CREATION_TIME
public static final BigQueryRpc.Option MIN_CREATION_TIME
-
MAX_CREATION_TIME
public static final BigQueryRpc.Option MAX_CREATION_TIME
-
MAX_RESULTS
public static final BigQueryRpc.Option MAX_RESULTS
-
PAGE_TOKEN
public static final BigQueryRpc.Option PAGE_TOKEN
-
PARENT_JOB_ID
public static final BigQueryRpc.Option PARENT_JOB_ID
-
START_INDEX
public static final BigQueryRpc.Option START_INDEX
-
STATE_FILTER
public static final BigQueryRpc.Option STATE_FILTER
-
TIMEOUT
public static final BigQueryRpc.Option TIMEOUT
-
REQUESTED_POLICY_VERSION
public static final BigQueryRpc.Option REQUESTED_POLICY_VERSION
-
TABLE_METADATA_VIEW
public static final BigQueryRpc.Option TABLE_METADATA_VIEW
-
-
Method Detail
-
values
public static BigQueryRpc.Option[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BigQueryRpc.Option c : BigQueryRpc.Option.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BigQueryRpc.Option valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public String value()
-
-