public static interface Row.Builder extends SdkPojo, CopyableBuilder<Row.Builder,Row>
Modifier and Type | Method and Description |
---|---|
Row.Builder |
data(Collection<Datum> data)
List of data points in a single row of the result set.
|
Row.Builder |
data(Consumer<Datum.Builder>... data)
List of data points in a single row of the result set.
|
Row.Builder |
data(Datum... data)
List of data points in a single row of the result set.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
Row.Builder data(Collection<Datum> data)
List of data points in a single row of the result set.
data
- List of data points in a single row of the result set.Row.Builder data(Datum... data)
List of data points in a single row of the result set.
data
- List of data points in a single row of the result set.Row.Builder data(Consumer<Datum.Builder>... data)
List of data points in a single row of the result set.
This is a convenience that creates an instance of theList.Builder
avoiding the need to create
one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its result
is passed to #data(List)
.data
- a consumer that will call methods on List.Builder
#data(List)
Copyright © 2021 Amazon Web Services, Inc. All Rights Reserved.