Interface Row.Builder

All Superinterfaces:
Buildable, CopyableBuilder<Row.Builder,Row>, SdkBuilder<Row.Builder,Row>, SdkPojo
Enclosing class:
Row

public static interface Row.Builder extends SdkPojo, CopyableBuilder<Row.Builder,Row>
  • Method Details

    • data

      The data that populates a row in a query result table.

      Parameters:
      data - The data that populates a row in a query result table.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • data

      Row.Builder data(Datum... data)

      The data that populates a row in a query result table.

      Parameters:
      data - The data that populates a row in a query result table.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • data

      The data that populates a row in a query result table.

      This is a convenience method that creates an instance of the Datum.Builder avoiding the need to create one manually via Datum.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to data(List<Datum>).

      Parameters:
      data - a consumer that will call methods on Datum.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: