Interface CustomIndicesInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomIndicesInput.Builder,CustomIndicesInput>,SdkBuilder<CustomIndicesInput.Builder,CustomIndicesInput>,SdkPojo
- Enclosing class:
- CustomIndicesInput
public static interface CustomIndicesInput.Builder extends SdkPojo, CopyableBuilder<CustomIndicesInput.Builder,CustomIndicesInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomIndicesInput.Builderoperations(Collection<Operation> operations)A list of BandMath indices to compute.CustomIndicesInput.Builderoperations(Consumer<Operation.Builder>... operations)A list of BandMath indices to compute.CustomIndicesInput.Builderoperations(Operation... operations)A list of BandMath indices to compute.-
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
-
operations
CustomIndicesInput.Builder operations(Collection<Operation> operations)
A list of BandMath indices to compute.
- Parameters:
operations- A list of BandMath indices to compute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
CustomIndicesInput.Builder operations(Operation... operations)
A list of BandMath indices to compute.
- Parameters:
operations- A list of BandMath indices to compute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
CustomIndicesInput.Builder operations(Consumer<Operation.Builder>... operations)
A list of BandMath indices to compute.
This is a convenience method that creates an instance of theOperation.Builderavoiding the need to create one manually viaOperation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#operations(List.) - Parameters:
operations- a consumer that will call methods onOperation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#operations(java.util.Collection)
-
-