Interface TableBorderOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableBorderOptions.Builder,TableBorderOptions>,SdkBuilder<TableBorderOptions.Builder,TableBorderOptions>,SdkPojo
- Enclosing class:
- TableBorderOptions
public static interface TableBorderOptions.Builder extends SdkPojo, CopyableBuilder<TableBorderOptions.Builder,TableBorderOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableBorderOptions.Buildercolor(String color)The color of a table border.TableBorderOptions.Builderstyle(String style)The style (none, solid) of a table border.TableBorderOptions.Builderstyle(TableBorderStyle style)The style (none, solid) of a table border.TableBorderOptions.Builderthickness(Integer thickness)The thickness of a table 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
-
color
TableBorderOptions.Builder color(String color)
The color of a table border.
- Parameters:
color- The color of a table border.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thickness
TableBorderOptions.Builder thickness(Integer thickness)
The thickness of a table border.
- Parameters:
thickness- The thickness of a table border.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
style
TableBorderOptions.Builder style(String style)
The style (none, solid) of a table border.
- Parameters:
style- The style (none, solid) of a table border.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TableBorderStyle,TableBorderStyle
-
style
TableBorderOptions.Builder style(TableBorderStyle style)
The style (none, solid) of a table border.
- Parameters:
style- The style (none, solid) of a table border.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TableBorderStyle,TableBorderStyle
-
-