Uses of Class
com.google.cloud.bigquery.FieldList
-
Packages that use FieldList Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of FieldList in com.google.cloud.bigquery
Methods in com.google.cloud.bigquery that return FieldList Modifier and Type Method Description FieldList
Schema. getFields()
Returns the fields in the current table schema.FieldList
Field. getSubFields()
Returns the list of sub-fields ifField.getType()
is aLegacySQLTypeName.RECORD
.static FieldList
FieldList. of(Field... fields)
Returns a newFieldList
object, which contains a collection ofField
objects in preserved order and represent schema columns.static FieldList
FieldList. of(Iterable<Field> fields)
Returns a newFieldList
object, which contains a collection ofField
objects in preserved order and represent schema columns.Methods in com.google.cloud.bigquery with parameters of type FieldList Modifier and Type Method Description static Field.Builder
Field. newBuilder(String name, LegacySQLTypeName type, FieldList subFields)
Returns a builder for a Field object with given name and type.static Field.Builder
Field. newBuilder(String name, StandardSQLTypeName type, FieldList subFields)
Returns a builder for 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, FieldList subFields)
Returns a Field object with given name and type.static FieldValueList
FieldValueList. of(List<FieldValue> row, FieldList schema)
Creates an instance ofFieldValueList
, useful for testing.Field.Builder
Field.Builder. setType(LegacySQLTypeName type, FieldList subFields)
Sets the type of the field.Field.Builder
Field.Builder. setType(StandardSQLTypeName type, FieldList subFields)
Sets the type of the field.
-