Interface TableOptions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TableOptions.Builder,
,TableOptions> SdkBuilder<TableOptions.Builder,
,TableOptions> SdkPojo
- Enclosing class:
TableOptions
-
Method Summary
Modifier and TypeMethodDescriptiondefault TableOptions.Builder
cellStyle
(Consumer<TableCellStyle.Builder> cellStyle) The table cell style of table cells.cellStyle
(TableCellStyle cellStyle) The table cell style of table cells.default TableOptions.Builder
headerStyle
(Consumer<TableCellStyle.Builder> headerStyle) The table cell style of a table header.headerStyle
(TableCellStyle headerStyle) The table cell style of a table header.orientation
(String orientation) The orientation (vertical, horizontal) for a table.orientation
(TableOrientation orientation) The orientation (vertical, horizontal) for a table.default TableOptions.Builder
rowAlternateColorOptions
(Consumer<RowAlternateColorOptions.Builder> rowAlternateColorOptions) The row alternate color options (widget status, row alternate colors) for a table.rowAlternateColorOptions
(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, sdkFieldNameToField, sdkFields
-
Method Details
-
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:
-
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:
-
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
The table cell style of a table header.
This is a convenience method that creates an instance of theTableCellStyle.Builder
avoiding the need to create one manually viaTableCellStyle.builder()
.When the
Consumer
completes,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:
-
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
The table cell style of table cells.
This is a convenience method that creates an instance of theTableCellStyle.Builder
avoiding the need to create one manually viaTableCellStyle.builder()
.When the
Consumer
completes,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:
-
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.Builder
avoiding the need to create one manually viaRowAlternateColorOptions.builder()
.When the
Consumer
completes,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:
-