Interface QueryTableRowsResponse.Builder

    • Method Detail

      • columnIds

        QueryTableRowsResponse.Builder columnIds​(Collection<String> columnIds)

        The list of columns in the table whose row data is returned in the result.

        Parameters:
        columnIds - The list of columns in the table whose row data is returned in the result.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • columnIds

        QueryTableRowsResponse.Builder columnIds​(String... columnIds)

        The list of columns in the table whose row data is returned in the result.

        Parameters:
        columnIds - The list of columns in the table whose row data is returned in the result.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • rows

        QueryTableRowsResponse.Builder rows​(Collection<TableRow> rows)

        The list of rows in the table that match the query filter.

        Parameters:
        rows - The list of rows in the table that match the query filter.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • rows

        QueryTableRowsResponse.Builder rows​(TableRow... rows)

        The list of rows in the table that match the query filter.

        Parameters:
        rows - The list of rows in the table that match the query filter.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • nextToken

        QueryTableRowsResponse.Builder nextToken​(String nextToken)

        Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.

        Parameters:
        nextToken - Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • workbookCursor

        QueryTableRowsResponse.Builder workbookCursor​(Long workbookCursor)

        Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

        Parameters:
        workbookCursor - Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.
        Returns:
        Returns a reference to this object so that method calls can be chained together.