Interface AxisScale.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AxisScale.Builder,AxisScale>,SdkBuilder<AxisScale.Builder,AxisScale>,SdkPojo
- Enclosing class:
- AxisScale
@Mutable @NotThreadSafe public static interface AxisScale.Builder extends SdkPojo, CopyableBuilder<AxisScale.Builder,AxisScale>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AxisScale.Builderlinear(Consumer<AxisLinearScale.Builder> linear)The linear axis scale setup.AxisScale.Builderlinear(AxisLinearScale linear)The linear axis scale setup.default AxisScale.Builderlogarithmic(Consumer<AxisLogarithmicScale.Builder> logarithmic)The logarithmic axis scale setup.AxisScale.Builderlogarithmic(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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
linear
AxisScale.Builder linear(AxisLinearScale 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
default AxisScale.Builder linear(Consumer<AxisLinearScale.Builder> 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:
linear(AxisLinearScale)
-
logarithmic
AxisScale.Builder logarithmic(AxisLogarithmicScale 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
default AxisScale.Builder logarithmic(Consumer<AxisLogarithmicScale.Builder> 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:
logarithmic(AxisLogarithmicScale)
-
-