Interface MergeOperations.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MergeOperations.Builder,MergeOperations>,SdkBuilder<MergeOperations.Builder,MergeOperations>,SdkPojo
- Enclosing class:
- MergeOperations
public static interface MergeOperations.Builder extends SdkPojo, CopyableBuilder<MergeOperations.Builder,MergeOperations>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MergeOperations.Builderdestination(String destination)The operation on a file in the destination of a merge or pull request.MergeOperations.Builderdestination(ChangeTypeEnum destination)The operation on a file in the destination of a merge or pull request.MergeOperations.Buildersource(String source)The operation (add, modify, or delete) on a file in the source of a merge or pull request.MergeOperations.Buildersource(ChangeTypeEnum source)The operation (add, modify, or delete) on a file in the source of a merge or pull request.-
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
-
source
MergeOperations.Builder source(String source)
The operation (add, modify, or delete) on a file in the source of a merge or pull request.
- Parameters:
source- The operation (add, modify, or delete) on a file in the source of a merge or pull request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeTypeEnum,ChangeTypeEnum
-
source
MergeOperations.Builder source(ChangeTypeEnum source)
The operation (add, modify, or delete) on a file in the source of a merge or pull request.
- Parameters:
source- The operation (add, modify, or delete) on a file in the source of a merge or pull request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeTypeEnum,ChangeTypeEnum
-
destination
MergeOperations.Builder destination(String destination)
The operation on a file in the destination of a merge or pull request.
- Parameters:
destination- The operation on a file in the destination of a merge or pull request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeTypeEnum,ChangeTypeEnum
-
destination
MergeOperations.Builder destination(ChangeTypeEnum destination)
The operation on a file in the destination of a merge or pull request.
- Parameters:
destination- The operation on a file in the destination of a merge or pull request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeTypeEnum,ChangeTypeEnum
-
-