Interface Spacing.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Spacing.Builder,Spacing>,SdkBuilder<Spacing.Builder,Spacing>,SdkPojo
- Enclosing class:
- Spacing
@Mutable @NotThreadSafe public static interface Spacing.Builder extends SdkPojo, CopyableBuilder<Spacing.Builder,Spacing>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Spacing.Builderbottom(String bottom)Define the bottom spacing.Spacing.Builderleft(String left)Define the left spacing.Spacing.Builderright(String right)Define the right spacing.Spacing.Buildertop(String top)Define the top spacing.-
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 Detail
-
top
Spacing.Builder top(String top)
Define the top spacing.
- Parameters:
top- Define the top spacing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bottom
Spacing.Builder bottom(String bottom)
Define the bottom spacing.
- Parameters:
bottom- Define the bottom spacing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
left
Spacing.Builder left(String left)
Define the left spacing.
- Parameters:
left- Define the left spacing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
right
Spacing.Builder right(String right)
Define the right spacing.
- Parameters:
right- Define the right spacing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-