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.Builder
linear
(Consumer<AxisLinearScale.Builder> linear) The linear axis scale setup.linear
(AxisLinearScale linear) The linear axis scale setup.default AxisScale.Builder
logarithmic
(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
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
-
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.Builder
avoiding the need to create one manually viaAxisLinearScale.builder()
.When the
Consumer
completes,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.Builder
avoiding the need to create one manually viaAxisLogarithmicScale.builder()
.When the
Consumer
completes,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:
-