Uses of Class
com.google.cloud.bigquery.FieldValueList
-
Packages that use FieldValueList Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of FieldValueList in com.google.cloud.bigquery
Methods in com.google.cloud.bigquery that return FieldValueList Modifier and Type Method Description FieldValueList
FieldValue. getRecordValue()
Returns this field's value as aFieldValueList
instance.static FieldValueList
FieldValueList. of(List<FieldValue> row, Field... schema)
Creates an instance ofFieldValueList
, useful for testing.static FieldValueList
FieldValueList. of(List<FieldValue> row, FieldList schema)
Creates an instance ofFieldValueList
, useful for testing.Methods in com.google.cloud.bigquery that return types with arguments of type FieldValueList Modifier and Type Method Description Iterable<FieldValueList>
TableResult. getValues()
Iterable<FieldValueList>
TableResult. iterateAll()
Constructor parameters in com.google.cloud.bigquery with type arguments of type FieldValueList Constructor Description TableResult(Schema schema, long totalRows, com.google.api.gax.paging.Page<FieldValueList> pageNoSchema)
Ifschema
is non-null,TableResult
adds the schema toFieldValueList
s when iterating through them.TableResult(Schema schema, long totalRows, com.google.api.gax.paging.Page<FieldValueList> pageNoSchema, JobId jobId)
-