Interface GlobalTableBorderOptions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<GlobalTableBorderOptions.Builder,
,GlobalTableBorderOptions> SdkBuilder<GlobalTableBorderOptions.Builder,
,GlobalTableBorderOptions> SdkPojo
- Enclosing class:
GlobalTableBorderOptions
public static interface GlobalTableBorderOptions.Builder
extends SdkPojo, CopyableBuilder<GlobalTableBorderOptions.Builder,GlobalTableBorderOptions>
-
Method Summary
Modifier and TypeMethodDescriptiondefault GlobalTableBorderOptions.Builder
sideSpecificBorder
(Consumer<TableSideBorderOptions.Builder> sideSpecificBorder) Determines the options for side specific border.sideSpecificBorder
(TableSideBorderOptions sideSpecificBorder) Determines the options for side specific border.default GlobalTableBorderOptions.Builder
uniformBorder
(Consumer<TableBorderOptions.Builder> uniformBorder) Determines the options for uniform border.uniformBorder
(TableBorderOptions uniformBorder) Determines the options for uniform border.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 Details
-
uniformBorder
Determines the options for uniform border.
- Parameters:
uniformBorder
- Determines the options for uniform border.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uniformBorder
default GlobalTableBorderOptions.Builder uniformBorder(Consumer<TableBorderOptions.Builder> uniformBorder) Determines the options for uniform border.
This is a convenience method that creates an instance of theTableBorderOptions.Builder
avoiding the need to create one manually viaTableBorderOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed touniformBorder(TableBorderOptions)
.- Parameters:
uniformBorder
- a consumer that will call methods onTableBorderOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
sideSpecificBorder
Determines the options for side specific border.
- Parameters:
sideSpecificBorder
- Determines the options for side specific border.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sideSpecificBorder
default GlobalTableBorderOptions.Builder sideSpecificBorder(Consumer<TableSideBorderOptions.Builder> sideSpecificBorder) Determines the options for side specific border.
This is a convenience method that creates an instance of theTableSideBorderOptions.Builder
avoiding the need to create one manually viaTableSideBorderOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosideSpecificBorder(TableSideBorderOptions)
.- Parameters:
sideSpecificBorder
- a consumer that will call methods onTableSideBorderOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-