Interface Position.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Position.Builder,Position>,SdkBuilder<Position.Builder,Position>,SdkPojo
- Enclosing class:
- Position
@Mutable @NotThreadSafe 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 in the line containing the specified position in the document.Position.Builderline(Integer line)The line containing the specified position in the document.-
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
-
line
Position.Builder line(Integer line)
The line containing the specified position in the document.
- Parameters:
line- The line containing the specified position in the document.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
Position.Builder column(Integer column)
The column in the line containing the specified position in the document.
- Parameters:
column- The column in the line containing the specified position in the document.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-