Interface ReferenceLineValueLabelConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReferenceLineValueLabelConfiguration.Builder,ReferenceLineValueLabelConfiguration>,SdkBuilder<ReferenceLineValueLabelConfiguration.Builder,ReferenceLineValueLabelConfiguration>,SdkPojo
- Enclosing class:
- ReferenceLineValueLabelConfiguration
@Mutable @NotThreadSafe public static interface ReferenceLineValueLabelConfiguration.Builder extends SdkPojo, CopyableBuilder<ReferenceLineValueLabelConfiguration.Builder,ReferenceLineValueLabelConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ReferenceLineValueLabelConfiguration.BuilderformatConfiguration(Consumer<NumericFormatConfiguration.Builder> formatConfiguration)The format configuration of the value label.ReferenceLineValueLabelConfiguration.BuilderformatConfiguration(NumericFormatConfiguration formatConfiguration)The format configuration of the value label.ReferenceLineValueLabelConfiguration.BuilderrelativePosition(String relativePosition)The relative position of the value label.ReferenceLineValueLabelConfiguration.BuilderrelativePosition(ReferenceLineValueLabelRelativePosition relativePosition)The relative position of the value label.-
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
-
relativePosition
ReferenceLineValueLabelConfiguration.Builder relativePosition(String relativePosition)
The relative position of the value label. Choose one of the following options:
-
BEFORE_CUSTOM_LABEL -
AFTER_CUSTOM_LABEL
- Parameters:
relativePosition- The relative position of the value label. Choose one of the following options:-
BEFORE_CUSTOM_LABEL -
AFTER_CUSTOM_LABEL
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReferenceLineValueLabelRelativePosition,ReferenceLineValueLabelRelativePosition
-
-
relativePosition
ReferenceLineValueLabelConfiguration.Builder relativePosition(ReferenceLineValueLabelRelativePosition relativePosition)
The relative position of the value label. Choose one of the following options:
-
BEFORE_CUSTOM_LABEL -
AFTER_CUSTOM_LABEL
- Parameters:
relativePosition- The relative position of the value label. Choose one of the following options:-
BEFORE_CUSTOM_LABEL -
AFTER_CUSTOM_LABEL
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReferenceLineValueLabelRelativePosition,ReferenceLineValueLabelRelativePosition
-
-
formatConfiguration
ReferenceLineValueLabelConfiguration.Builder formatConfiguration(NumericFormatConfiguration formatConfiguration)
The format configuration of the value label.
- Parameters:
formatConfiguration- The format configuration of the value label.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
formatConfiguration
default ReferenceLineValueLabelConfiguration.Builder formatConfiguration(Consumer<NumericFormatConfiguration.Builder> formatConfiguration)
The format configuration of the value label.
This is a convenience method that creates an instance of theNumericFormatConfiguration.Builderavoiding the need to create one manually viaNumericFormatConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toformatConfiguration(NumericFormatConfiguration).- Parameters:
formatConfiguration- a consumer that will call methods onNumericFormatConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
formatConfiguration(NumericFormatConfiguration)
-
-