public static interface TableRow.Builder extends SdkPojo, CopyableBuilder<TableRow.Builder,TableRow>
| Modifier and Type | Method and Description |
|---|---|
TableRow.Builder |
cells(Cell... cells)
A list of cells in the table row.
|
TableRow.Builder |
cells(Collection<Cell> cells)
A list of cells in the table row.
|
TableRow.Builder |
cells(Consumer<Cell.Builder>... cells)
A list of cells in the table row.
|
TableRow.Builder |
rowId(String rowId)
The id of the row in the table.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildTableRow.Builder rowId(String rowId)
The id of the row in the table.
rowId - The id of the row in the table.TableRow.Builder cells(Collection<Cell> cells)
A list of cells in the table row. The cells appear in the same order as the columns of the table.
cells - A list of cells in the table row. The cells appear in the same order as the columns of the table.TableRow.Builder cells(Cell... cells)
A list of cells in the table row. The cells appear in the same order as the columns of the table.
cells - A list of cells in the table row. The cells appear in the same order as the columns of the table.TableRow.Builder cells(Consumer<Cell.Builder>... cells)
A list of cells in the table row. The cells appear in the same order as the columns of the table.
This is a convenience method that creates an instance of theCell.Builder avoiding the need to create one manually
via Cell.builder().
When the Consumer completes,
SdkBuilder.build() is called immediately and its
result is passed to #cells(List.
cells - a consumer that will call methods on
Cell.Builder#cells(java.util.Collection| ) | Copyright © 2022. All rights reserved.