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 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 #cells(List| ) | .cells - a consumer that will call methods on List| .Builder | #cells(List| ) | Copyright © 2021. All rights reserved.