Uses of Class
com.google.cloud.bigquery.Field
-
Packages that use Field Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of Field in com.google.cloud.bigquery
Methods in com.google.cloud.bigquery that return Field Modifier and Type Method Description Field
Field.Builder. build()
Creates aField
object.Field
FieldList. get(int index)
Get schema field by index.Field
FieldList. get(String name)
Get schema field by name.static Field
Field. of(String name, LegacySQLTypeName type, Field... subFields)
Returns a Field object with given name and type.static Field
Field. of(String name, LegacySQLTypeName type, FieldList subFields)
Returns a Field object with given name and type.static Field
Field. of(String name, StandardSQLTypeName type, Field... subFields)
Returns a Field object with given name and type.static Field
Field. of(String name, StandardSQLTypeName type, FieldList subFields)
Returns a Field object with given name and type.Methods in com.google.cloud.bigquery with parameters of type Field Modifier and Type Method Description static Field.Builder
Field. newBuilder(String name, LegacySQLTypeName type, Field... subFields)
Returns a builder for a Field object with given name and type.static Field.Builder
Field. newBuilder(String name, StandardSQLTypeName type, Field... subFields)
Returns a builder for a Field object with given name and type.static Field
Field. of(String name, LegacySQLTypeName type, Field... subFields)
Returns a Field object with given name and type.static Field
Field. of(String name, StandardSQLTypeName type, Field... subFields)
Returns a Field object with given name and type.static FieldList
FieldList. of(Field... fields)
Returns a newFieldList
object, which contains a collection ofField
objects in preserved order and represent schema columns.static FieldValueList
FieldValueList. of(List<FieldValue> row, Field... schema)
Creates an instance ofFieldValueList
, useful for testing.static Schema
Schema. of(Field... fields)
Creates aSchema
object given some fields.Field.Builder
Field.Builder. setType(LegacySQLTypeName type, Field... subFields)
Sets the type of the field.Field.Builder
Field.Builder. setType(StandardSQLTypeName type, Field... subFields)
Sets the type of the field.Method parameters in com.google.cloud.bigquery with type arguments of type Field Modifier and Type Method Description static FieldList
FieldList. of(Iterable<Field> fields)
Returns a newFieldList
object, which contains a collection ofField
objects in preserved order and represent schema columns.static Schema
Schema. of(Iterable<Field> fields)
Creates aSchema
object given a list of fields.
-