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.Builderrange(Consumer<AxisDisplayRange.Builder> range) The range setup of a numeric axis.range(AxisDisplayRange range) The range setup of a numeric axis.default NumericAxisOptions.Builderscale(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
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, 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.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:
 
 - 
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.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:
 
 
 -