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.TableDataListOptionBigQuery.TableDataListOption. pageSize(long pageSize)Returns an option to specify the maximum number of rows returned per page.static BigQuery.TableDataListOptionBigQuery.TableDataListOption. pageToken(String pageToken)Returns an option to specify the page token from which to start listing table data.static BigQuery.TableDataListOptionBigQuery.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 TableResultTable. list(BigQuery.TableDataListOption... options)Returns the paginated list rows in this table.TableResultTable. list(Schema schema, BigQuery.TableDataListOption... options)Returns the paginated list rows in this table.TableResultBigQuery. listTableData(TableId tableId, BigQuery.TableDataListOption... options)Lists the table's rows.TableResultBigQuery. listTableData(TableId tableId, Schema schema, BigQuery.TableDataListOption... options)Lists the table's rows.TableResultBigQuery. listTableData(String datasetId, String tableId, BigQuery.TableDataListOption... options)Lists the table's rows.TableResultBigQuery. listTableData(String datasetId, String tableId, Schema schema, BigQuery.TableDataListOption... options)Lists the table's rows.
-