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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GlobalTableBorderOptions.BuildersideSpecificBorder(Consumer<TableSideBorderOptions.Builder> sideSpecificBorder)Determines the options for side specific border.GlobalTableBorderOptions.BuildersideSpecificBorder(TableSideBorderOptions sideSpecificBorder)Determines the options for side specific border.default GlobalTableBorderOptions.BuilderuniformBorder(Consumer<TableBorderOptions.Builder> uniformBorder)Determines the options for uniform border.GlobalTableBorderOptions.BuilderuniformBorder(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 Detail
-
uniformBorder
GlobalTableBorderOptions.Builder uniformBorder(TableBorderOptions 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.Builderavoiding the need to create one manually viaTableBorderOptions.builder().When the
Consumercompletes,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:
uniformBorder(TableBorderOptions)
-
sideSpecificBorder
GlobalTableBorderOptions.Builder sideSpecificBorder(TableSideBorderOptions 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.Builderavoiding the need to create one manually viaTableSideBorderOptions.builder().When the
Consumercompletes,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:
sideSpecificBorder(TableSideBorderOptions)
-
-