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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default NumericAxisOptions.Builderrange(Consumer<AxisDisplayRange.Builder> range)The range setup of a numeric axis.NumericAxisOptions.Builderrange(AxisDisplayRange range)The range setup of a numeric axis.default NumericAxisOptions.Builderscale(Consumer<AxisScale.Builder> scale)The scale setup of a numeric axis.NumericAxisOptions.Builderscale(AxisScale scale)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 Detail
-
scale
NumericAxisOptions.Builder scale(AxisScale 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
default NumericAxisOptions.Builder scale(Consumer<AxisScale.Builder> scale)
The scale setup of a numeric axis.
This is a convenience method that creates an instance of theAxisScale.Builderavoiding the need to create one manually viaAxisScale.builder().When the
Consumercompletes,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:
scale(AxisScale)
-
range
NumericAxisOptions.Builder range(AxisDisplayRange 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
default NumericAxisOptions.Builder range(Consumer<AxisDisplayRange.Builder> range)
The range setup of a numeric axis.
This is a convenience method that creates an instance of theAxisDisplayRange.Builderavoiding the need to create one manually viaAxisDisplayRange.builder().When the
Consumercompletes,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:
range(AxisDisplayRange)
-
-