Interface FieldPosition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FieldPosition.Builder,FieldPosition>,SdkBuilder<FieldPosition.Builder,FieldPosition>,SdkPojo
- Enclosing class:
- FieldPosition
public static interface FieldPosition.Builder extends SdkPojo, CopyableBuilder<FieldPosition.Builder,FieldPosition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldPosition.Builderbelow(String below)The field position is below the field specified by the string.FieldPosition.Builderfixed(String fixed)The field position is fixed and doesn't change in relation to other fields.FieldPosition.Builderfixed(FixedPosition fixed)The field position is fixed and doesn't change in relation to other fields.FieldPosition.BuilderrightOf(String rightOf)The field position is to the right of the field specified by the string.-
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
-
fixed
FieldPosition.Builder fixed(String fixed)
The field position is fixed and doesn't change in relation to other fields.
- Parameters:
fixed- The field position is fixed and doesn't change in relation to other fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FixedPosition,FixedPosition
-
fixed
FieldPosition.Builder fixed(FixedPosition fixed)
The field position is fixed and doesn't change in relation to other fields.
- Parameters:
fixed- The field position is fixed and doesn't change in relation to other fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FixedPosition,FixedPosition
-
rightOf
FieldPosition.Builder rightOf(String rightOf)
The field position is to the right of the field specified by the string.
- Parameters:
rightOf- The field position is to the right of the field specified by the string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
below
FieldPosition.Builder below(String below)
The field position is below the field specified by the string.
- Parameters:
below- The field position is below the field specified by the string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-