Interface NumericAxisOptions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<NumericAxisOptions.Builder,
,NumericAxisOptions> SdkBuilder<NumericAxisOptions.Builder,
,NumericAxisOptions> SdkPojo
- Enclosing class:
NumericAxisOptions
public static interface NumericAxisOptions.Builder
extends SdkPojo, CopyableBuilder<NumericAxisOptions.Builder,NumericAxisOptions>
-
Method Summary
Modifier and TypeMethodDescriptiondefault NumericAxisOptions.Builder
range
(Consumer<AxisDisplayRange.Builder> range) The range setup of a numeric axis.range
(AxisDisplayRange range) The range setup of a numeric axis.default NumericAxisOptions.Builder
scale
(Consumer<AxisScale.Builder> scale) The scale setup of a numeric axis.The scale setup of a numeric axis.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 Details
-
scale
The scale setup of a numeric axis.
- Parameters:
scale
- The scale setup of a numeric axis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scale
The scale setup of a numeric axis.
This is a convenience method that creates an instance of theAxisScale.Builder
avoiding the need to create one manually viaAxisScale.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toscale(AxisScale)
.- Parameters:
scale
- a consumer that will call methods onAxisScale.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
range
The range setup of a numeric axis.
- Parameters:
range
- The range setup of a numeric axis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
range
The range setup of a numeric axis.
This is a convenience method that creates an instance of theAxisDisplayRange.Builder
avoiding the need to create one manually viaAxisDisplayRange.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed torange(AxisDisplayRange)
.- Parameters:
range
- a consumer that will call methods onAxisDisplayRange.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-