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

      List of data points in a single row of the result set.

      Parameters:
      data - List of data points in a single row of the result set.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • data

      Row.Builder data(Datum... data)

      List of data points in a single row of the result set.

      Parameters:
      data - List of data points in a single row of the result set.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • data

      List of data points in a single row of the result set.

      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: