Uses of Class
com.google.cloud.bigquery.TableDefinition.Type
-
Packages that use TableDefinition.Type Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of TableDefinition.Type in com.google.cloud.bigquery
Fields in com.google.cloud.bigquery declared as TableDefinition.Type Modifier and Type Field Description static TableDefinition.Type
TableDefinition.Type. EXTERNAL
A BigQuery table backed by external data.static TableDefinition.Type
TableDefinition.Type. MATERIALIZED_VIEW
SQL query whose result is persisted.static TableDefinition.Type
TableDefinition.Type. MODEL
A BigQuery table representing BigQuery ML Model.static TableDefinition.Type
TableDefinition.Type. SNAPSHOT
static TableDefinition.Type
TableDefinition.Type. TABLE
A normal BigQuery table.static TableDefinition.Type
TableDefinition.Type. VIEW
A virtual table defined by a SQL query.Methods in com.google.cloud.bigquery that return TableDefinition.Type Modifier and Type Method Description abstract TableDefinition.Type
TableDefinition. getType()
Returns the table's type.static TableDefinition.Type
TableDefinition.Type. valueOf(String constant)
Get the Type for the given String constant, and allow unrecognized values.static TableDefinition.Type
TableDefinition.Type. valueOfStrict(String constant)
Get the Type for the given String constant, and throw an exception if the constant is not recognized.static TableDefinition.Type[]
TableDefinition.Type. values()
Return the known values for Type.Methods in com.google.cloud.bigquery with parameters of type TableDefinition.Type Modifier and Type Method Description abstract ExternalTableDefinition.Builder
ExternalTableDefinition.Builder. setType(TableDefinition.Type type)
abstract MaterializedViewDefinition.Builder
MaterializedViewDefinition.Builder. setType(TableDefinition.Type type)
abstract ModelTableDefinition.Builder
ModelTableDefinition.Builder. setType(TableDefinition.Type type)
abstract StandardTableDefinition.Builder
StandardTableDefinition.Builder. setType(TableDefinition.Type type)
abstract B
TableDefinition.Builder. setType(TableDefinition.Type type)
abstract ViewDefinition.Builder
ViewDefinition.Builder. setType(TableDefinition.Type type)
-