Interface TableOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableOptions.Builder,TableOptions>,SdkBuilder<TableOptions.Builder,TableOptions>,SdkPojo
- Enclosing class:
- TableOptions
public static interface TableOptions.Builder extends SdkPojo, CopyableBuilder<TableOptions.Builder,TableOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TableOptions.BuildercellStyle(Consumer<TableCellStyle.Builder> cellStyle)The table cell style of table cells.TableOptions.BuildercellStyle(TableCellStyle cellStyle)The table cell style of table cells.default TableOptions.BuilderheaderStyle(Consumer<TableCellStyle.Builder> headerStyle)The table cell style of a table header.TableOptions.BuilderheaderStyle(TableCellStyle headerStyle)The table cell style of a table header.TableOptions.Builderorientation(String orientation)The orientation (vertical, horizontal) for a table.TableOptions.Builderorientation(TableOrientation orientation)The orientation (vertical, horizontal) for a table.default TableOptions.BuilderrowAlternateColorOptions(Consumer<RowAlternateColorOptions.Builder> rowAlternateColorOptions)The row alternate color options (widget status, row alternate colors) for a table.TableOptions.BuilderrowAlternateColorOptions(RowAlternateColorOptions rowAlternateColorOptions)The row alternate color options (widget status, row alternate colors) for a table.-
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
-
orientation
TableOptions.Builder orientation(String orientation)
The orientation (vertical, horizontal) for a table.
- Parameters:
orientation- The orientation (vertical, horizontal) for a table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TableOrientation,TableOrientation
-
orientation
TableOptions.Builder orientation(TableOrientation orientation)
The orientation (vertical, horizontal) for a table.
- Parameters:
orientation- The orientation (vertical, horizontal) for a table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TableOrientation,TableOrientation
-
headerStyle
TableOptions.Builder headerStyle(TableCellStyle headerStyle)
The table cell style of a table header.
- Parameters:
headerStyle- The table cell style of a table header.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
headerStyle
default TableOptions.Builder headerStyle(Consumer<TableCellStyle.Builder> headerStyle)
The table cell style of a table header.
This is a convenience method that creates an instance of theTableCellStyle.Builderavoiding the need to create one manually viaTableCellStyle.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toheaderStyle(TableCellStyle).- Parameters:
headerStyle- a consumer that will call methods onTableCellStyle.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
headerStyle(TableCellStyle)
-
cellStyle
TableOptions.Builder cellStyle(TableCellStyle cellStyle)
The table cell style of table cells.
- Parameters:
cellStyle- The table cell style of table cells.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cellStyle
default TableOptions.Builder cellStyle(Consumer<TableCellStyle.Builder> cellStyle)
The table cell style of table cells.
This is a convenience method that creates an instance of theTableCellStyle.Builderavoiding the need to create one manually viaTableCellStyle.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocellStyle(TableCellStyle).- Parameters:
cellStyle- a consumer that will call methods onTableCellStyle.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
cellStyle(TableCellStyle)
-
rowAlternateColorOptions
TableOptions.Builder rowAlternateColorOptions(RowAlternateColorOptions rowAlternateColorOptions)
The row alternate color options (widget status, row alternate colors) for a table.
- Parameters:
rowAlternateColorOptions- The row alternate color options (widget status, row alternate colors) for a table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rowAlternateColorOptions
default TableOptions.Builder rowAlternateColorOptions(Consumer<RowAlternateColorOptions.Builder> rowAlternateColorOptions)
The row alternate color options (widget status, row alternate colors) for a table.
This is a convenience method that creates an instance of theRowAlternateColorOptions.Builderavoiding the need to create one manually viaRowAlternateColorOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torowAlternateColorOptions(RowAlternateColorOptions).- Parameters:
rowAlternateColorOptions- a consumer that will call methods onRowAlternateColorOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
rowAlternateColorOptions(RowAlternateColorOptions)
-
-