Interface Position.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Position.Builder,Position>,SdkBuilder<Position.Builder,Position>,SdkPojo
- Enclosing class:
- Position
public static interface Position.Builder extends SdkPojo, CopyableBuilder<Position.Builder,Position>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Position.Buildercolumn(Integer column)The column of the position, starting from 0.Position.Builderline(Integer line)The line of the position, starting from 1.Position.Builderoffset(Integer offset)The offset within the policy that corresponds to the position, starting from 0.-
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
-
line
Position.Builder line(Integer line)
The line of the position, starting from 1.
- Parameters:
line- The line of the position, starting from 1.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
Position.Builder column(Integer column)
The column of the position, starting from 0.
- Parameters:
column- The column of the position, starting from 0.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
offset
Position.Builder offset(Integer offset)
The offset within the policy that corresponds to the position, starting from 0.
- Parameters:
offset- The offset within the policy that corresponds to the position, starting from 0.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-