Interface ArcAxisConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ArcAxisConfiguration.Builder,ArcAxisConfiguration>,SdkBuilder<ArcAxisConfiguration.Builder,ArcAxisConfiguration>,SdkPojo
- Enclosing class:
- ArcAxisConfiguration
@Mutable @NotThreadSafe public static interface ArcAxisConfiguration.Builder extends SdkPojo, CopyableBuilder<ArcAxisConfiguration.Builder,ArcAxisConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ArcAxisConfiguration.Builderrange(Consumer<ArcAxisDisplayRange.Builder> range)The arc axis range of aGaugeChartVisual.ArcAxisConfiguration.Builderrange(ArcAxisDisplayRange range)The arc axis range of aGaugeChartVisual.ArcAxisConfiguration.BuilderreserveRange(Integer reserveRange)The reserved range of the arc 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
range
ArcAxisConfiguration.Builder range(ArcAxisDisplayRange range)
The arc axis range of a
GaugeChartVisual.- Parameters:
range- The arc axis range of aGaugeChartVisual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
range
default ArcAxisConfiguration.Builder range(Consumer<ArcAxisDisplayRange.Builder> range)
The arc axis range of a
This is a convenience method that creates an instance of theGaugeChartVisual.ArcAxisDisplayRange.Builderavoiding the need to create one manually viaArcAxisDisplayRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torange(ArcAxisDisplayRange).- Parameters:
range- a consumer that will call methods onArcAxisDisplayRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
range(ArcAxisDisplayRange)
-
reserveRange
ArcAxisConfiguration.Builder reserveRange(Integer reserveRange)
The reserved range of the arc axis.
- Parameters:
reserveRange- The reserved range of the arc axis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-