Interface VisibleRangeOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VisibleRangeOptions.Builder,VisibleRangeOptions>,SdkBuilder<VisibleRangeOptions.Builder,VisibleRangeOptions>,SdkPojo
- Enclosing class:
- VisibleRangeOptions
@Mutable @NotThreadSafe public static interface VisibleRangeOptions.Builder extends SdkPojo, CopyableBuilder<VisibleRangeOptions.Builder,VisibleRangeOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default VisibleRangeOptions.BuilderpercentRange(Consumer<PercentVisibleRange.Builder> percentRange)The percent range in the visible range.VisibleRangeOptions.BuilderpercentRange(PercentVisibleRange percentRange)The percent range in the visible range.-
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
-
percentRange
VisibleRangeOptions.Builder percentRange(PercentVisibleRange percentRange)
The percent range in the visible range.
- Parameters:
percentRange- The percent range in the visible range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
percentRange
default VisibleRangeOptions.Builder percentRange(Consumer<PercentVisibleRange.Builder> percentRange)
The percent range in the visible range.
This is a convenience method that creates an instance of thePercentVisibleRange.Builderavoiding the need to create one manually viaPercentVisibleRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topercentRange(PercentVisibleRange).- Parameters:
percentRange- a consumer that will call methods onPercentVisibleRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
percentRange(PercentVisibleRange)
-
-