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 FieldField.Builder. build()Creates aFieldobject.FieldFieldList. get(int index)Get schema field by index.FieldFieldList. get(String name)Get schema field by name.static FieldField. of(String name, LegacySQLTypeName type, Field... subFields)Returns 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, Field... 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.Methods in com.google.cloud.bigquery with parameters of type Field Modifier and Type Method Description static Field.BuilderField. newBuilder(String name, LegacySQLTypeName type, Field... subFields)Returns a builder for a Field object with given name and type.static Field.BuilderField. newBuilder(String name, StandardSQLTypeName type, Field... subFields)Returns a builder for a Field object with given name and type.static FieldField. of(String name, LegacySQLTypeName type, Field... subFields)Returns a Field object with given name and type.static FieldField. of(String name, StandardSQLTypeName type, Field... subFields)Returns a Field object with given name and type.static FieldListFieldList. of(Field... fields)Returns a newFieldListobject, which contains a collection ofFieldobjects in preserved order and represent schema columns.static FieldValueListFieldValueList. of(List<FieldValue> row, Field... schema)Creates an instance ofFieldValueList, useful for testing.static SchemaSchema. of(Field... fields)Creates aSchemaobject given some fields.Field.BuilderField.Builder. setType(LegacySQLTypeName type, Field... subFields)Sets the type of the field.Field.BuilderField.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 FieldListFieldList. of(Iterable<Field> fields)Returns a newFieldListobject, which contains a collection ofFieldobjects in preserved order and represent schema columns.static SchemaSchema. of(Iterable<Field> fields)Creates aSchemaobject given a list of fields.
-