Uses of Class
com.google.cloud.bigquery.BigQuery.TableDataListOption
-
Packages that use BigQuery.TableDataListOption Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of BigQuery.TableDataListOption in com.google.cloud.bigquery
Methods in com.google.cloud.bigquery that return BigQuery.TableDataListOption Modifier and Type Method Description static BigQuery.TableDataListOption
BigQuery.TableDataListOption. pageSize(long pageSize)
Returns an option to specify the maximum number of rows returned per page.static BigQuery.TableDataListOption
BigQuery.TableDataListOption. pageToken(String pageToken)
Returns an option to specify the page token from which to start listing table data.static BigQuery.TableDataListOption
BigQuery.TableDataListOption. startIndex(long index)
Returns an option that sets the zero-based index of the row from which to start listing table data.Methods in com.google.cloud.bigquery with parameters of type BigQuery.TableDataListOption Modifier and Type Method Description TableResult
Table. list(BigQuery.TableDataListOption... options)
Returns the paginated list rows in this table.TableResult
Table. list(Schema schema, BigQuery.TableDataListOption... options)
Returns the paginated list rows in this table.TableResult
BigQuery. listTableData(TableId tableId, BigQuery.TableDataListOption... options)
Lists the table's rows.TableResult
BigQuery. listTableData(TableId tableId, Schema schema, BigQuery.TableDataListOption... options)
Lists the table's rows.TableResult
BigQuery. listTableData(String datasetId, String tableId, BigQuery.TableDataListOption... options)
Lists the table's rows.TableResult
BigQuery. listTableData(String datasetId, String tableId, Schema schema, BigQuery.TableDataListOption... options)
Lists the table's rows.
-