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 FieldListSchema. getFields()Returns the fields in the current table schema.FieldListField. getSubFields()Returns the list of sub-fields ifField.getType()is aLegacySQLTypeName.RECORD.static FieldListFieldList. of(Field... fields)Returns a newFieldListobject, which contains a collection ofFieldobjects in preserved order and represent schema columns.static FieldListFieldList. of(Iterable<Field> fields)Returns a newFieldListobject, which contains a collection ofFieldobjects 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.BuilderField. newBuilder(String name, LegacySQLTypeName type, FieldList subFields)Returns a builder for a Field object with given name and type.static Field.BuilderField. newBuilder(String name, StandardSQLTypeName type, FieldList subFields)Returns a builder for a Field object with given name and type.static FieldField. of(String name, LegacySQLTypeName type, FieldList subFields)Returns a Field object with given name and type.static FieldField. of(String name, StandardSQLTypeName type, FieldList subFields)Returns a Field object with given name and type.static FieldValueListFieldValueList. of(List<FieldValue> row, FieldList schema)Creates an instance ofFieldValueList, useful for testing.Field.BuilderField.Builder. setType(LegacySQLTypeName type, FieldList subFields)Sets the type of the field.Field.BuilderField.Builder. setType(StandardSQLTypeName type, FieldList subFields)Sets the type of the field.
-