Interface ReferenceLineValueLabelConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ReferenceLineValueLabelConfiguration.Builder,
,ReferenceLineValueLabelConfiguration> SdkBuilder<ReferenceLineValueLabelConfiguration.Builder,
,ReferenceLineValueLabelConfiguration> SdkPojo
- Enclosing class:
ReferenceLineValueLabelConfiguration
public static interface ReferenceLineValueLabelConfiguration.Builder
extends SdkPojo, CopyableBuilder<ReferenceLineValueLabelConfiguration.Builder,ReferenceLineValueLabelConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionformatConfiguration
(Consumer<NumericFormatConfiguration.Builder> formatConfiguration) The format configuration of the value label.formatConfiguration
(NumericFormatConfiguration formatConfiguration) The format configuration of the value label.relativePosition
(String relativePosition) The relative position of the value label.relativePosition
(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, sdkFields
-
Method Details
-
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:
-
-
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:
-
-
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.Builder
avoiding the need to create one manually viaNumericFormatConfiguration.builder()
.When the
Consumer
completes,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:
-