Interface AxisScale.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<AxisScale.Builder,,AxisScale> SdkBuilder<AxisScale.Builder,,AxisScale> SdkPojo
- Enclosing class:
 AxisScale
public static interface AxisScale.Builder
extends SdkPojo, CopyableBuilder<AxisScale.Builder,AxisScale> 
- 
Method Summary
Modifier and TypeMethodDescriptiondefault AxisScale.Builderlinear(Consumer<AxisLinearScale.Builder> linear) The linear axis scale setup.linear(AxisLinearScale linear) The linear axis scale setup.default AxisScale.Builderlogarithmic(Consumer<AxisLogarithmicScale.Builder> logarithmic) The logarithmic axis scale setup.logarithmic(AxisLogarithmicScale logarithmic) The logarithmic axis scale setup.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, sdkFields 
- 
Method Details
- 
linear
The linear axis scale setup.
- Parameters:
 linear- The linear axis scale setup.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
linear
The linear axis scale setup.
This is a convenience method that creates an instance of theAxisLinearScale.Builderavoiding the need to create one manually viaAxisLinearScale.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolinear(AxisLinearScale).- Parameters:
 linear- a consumer that will call methods onAxisLinearScale.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 - 
logarithmic
The logarithmic axis scale setup.
- Parameters:
 logarithmic- The logarithmic axis scale setup.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
logarithmic
The logarithmic axis scale setup.
This is a convenience method that creates an instance of theAxisLogarithmicScale.Builderavoiding the need to create one manually viaAxisLogarithmicScale.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tologarithmic(AxisLogarithmicScale).- Parameters:
 logarithmic- a consumer that will call methods onAxisLogarithmicScale.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -