Uses of Class
com.google.cloud.bigquery.StandardSQLField
-
Packages that use StandardSQLField Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of StandardSQLField in com.google.cloud.bigquery
Methods in com.google.cloud.bigquery that return StandardSQLField Modifier and Type Method Description abstract StandardSQLField
StandardSQLField.Builder. build()
Creates aStandardSQLField
object.Methods in com.google.cloud.bigquery that return types with arguments of type StandardSQLField Modifier and Type Method Description abstract List<StandardSQLField>
StandardSQLTableType. getColumns()
Returns the columns in this table type.com.google.common.collect.ImmutableList<StandardSQLField>
ModelInfo. getFeatureColumns()
Returns information about the feature columns for this model.abstract List<StandardSQLField>
StandardSQLStructType. getFields()
Returns the list of fields within a struct type.com.google.common.collect.ImmutableList<StandardSQLField>
ModelInfo. getLabelColumns()
Returns information about the label columns for this model.Method parameters in com.google.cloud.bigquery with type arguments of type StandardSQLField Modifier and Type Method Description static StandardSQLStructType.Builder
StandardSQLStructType. newBuilder(List<StandardSQLField> fieldList)
Returns a builder for aStandardSQLStructType
object with the specified fields.static StandardSQLTableType.Builder
StandardSQLTableType. newBuilder(List<StandardSQLField> columns)
Returns a builder for aStandardSQLTableType
object with the specified columns.abstract StandardSQLTableType.Builder
StandardSQLTableType.Builder. setColumns(List<StandardSQLField> columns)
Sets the columns in this table type.abstract StandardSQLStructType.Builder
StandardSQLStructType.Builder. setFields(List<StandardSQLField> fields)
Sets the fields of the struct type.
-