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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Row.Builderdata(Collection<Datum> data)List of data points in a single row of the result set.Row.Builderdata(Consumer<Datum.Builder>... data)List of data points in a single row of the result set.Row.Builderdata(Datum... data)List of data points in a single row of the result set.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
data
Row.Builder data(Collection<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
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
Row.Builder data(Consumer<Datum.Builder>... data)
List of data points in a single row of the result set.
This is a convenience method that creates an instance of theDatum.Builderavoiding the need to create one manually viaDatum.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#data(List.) - Parameters:
data- a consumer that will call methods onDatum.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#data(java.util.Collection)
-
-