public static interface ResultRow.Builder extends SdkPojo, CopyableBuilder<ResultRow.Builder,ResultRow>
| Modifier and Type | Method and Description |
|---|---|
ResultRow.Builder |
dataItems(Collection<DataItem> dataItems)
List of all the data cells in a row.
|
ResultRow.Builder |
dataItems(Consumer<DataItem.Builder>... dataItems)
List of all the data cells in a row.
|
ResultRow.Builder |
dataItems(DataItem... dataItems)
List of all the data cells in a row.
|
ResultRow.Builder |
rowId(String rowId)
The ID for a particular row.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildResultRow.Builder rowId(String rowId)
The ID for a particular row.
rowId - The ID for a particular row.ResultRow.Builder dataItems(Collection<DataItem> dataItems)
List of all the data cells in a row.
dataItems - List of all the data cells in a row.ResultRow.Builder dataItems(DataItem... dataItems)
List of all the data cells in a row.
dataItems - List of all the data cells in a row.ResultRow.Builder dataItems(Consumer<DataItem.Builder>... dataItems)
List of all the data cells in a row.
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 #dataItems(List) .dataItems - a consumer that will call methods on List.Builder #dataItems(List) Copyright © 2020. All rights reserved.