Interface MergeHunkDetail.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MergeHunkDetail.Builder,MergeHunkDetail>,SdkBuilder<MergeHunkDetail.Builder,MergeHunkDetail>,SdkPojo
- Enclosing class:
- MergeHunkDetail
public static interface MergeHunkDetail.Builder extends SdkPojo, CopyableBuilder<MergeHunkDetail.Builder,MergeHunkDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MergeHunkDetail.BuilderendLine(Integer endLine)The end position of the hunk in the merge result.MergeHunkDetail.BuilderhunkContent(String hunkContent)The base-64 encoded content of the hunk merged region that might contain a conflict.MergeHunkDetail.BuilderstartLine(Integer startLine)The start position of the hunk in the merge result.-
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
-
startLine
MergeHunkDetail.Builder startLine(Integer startLine)
The start position of the hunk in the merge result.
- Parameters:
startLine- The start position of the hunk in the merge result.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endLine
MergeHunkDetail.Builder endLine(Integer endLine)
The end position of the hunk in the merge result.
- Parameters:
endLine- The end position of the hunk in the merge result.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hunkContent
MergeHunkDetail.Builder hunkContent(String hunkContent)
The base-64 encoded content of the hunk merged region that might contain a conflict.
- Parameters:
hunkContent- The base-64 encoded content of the hunk merged region that might contain a conflict.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-