Interface NumericSeparatorConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<NumericSeparatorConfiguration.Builder,
,NumericSeparatorConfiguration> SdkBuilder<NumericSeparatorConfiguration.Builder,
,NumericSeparatorConfiguration> SdkPojo
- Enclosing class:
NumericSeparatorConfiguration
public static interface NumericSeparatorConfiguration.Builder
extends SdkPojo, CopyableBuilder<NumericSeparatorConfiguration.Builder,NumericSeparatorConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptiondecimalSeparator
(String decimalSeparator) Determines the decimal separator.decimalSeparator
(NumericSeparatorSymbol decimalSeparator) Determines the decimal separator.thousandsSeparator
(Consumer<ThousandSeparatorOptions.Builder> thousandsSeparator) The options that determine the thousands separator configuration.thousandsSeparator
(ThousandSeparatorOptions thousandsSeparator) The options that determine the thousands separator configuration.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
-
decimalSeparator
Determines the decimal separator.
- Parameters:
decimalSeparator
- Determines the decimal separator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
decimalSeparator
Determines the decimal separator.
- Parameters:
decimalSeparator
- Determines the decimal separator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
thousandsSeparator
NumericSeparatorConfiguration.Builder thousandsSeparator(ThousandSeparatorOptions thousandsSeparator) The options that determine the thousands separator configuration.
- Parameters:
thousandsSeparator
- The options that determine the thousands separator configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thousandsSeparator
default NumericSeparatorConfiguration.Builder thousandsSeparator(Consumer<ThousandSeparatorOptions.Builder> thousandsSeparator) The options that determine the thousands separator configuration.
This is a convenience method that creates an instance of theThousandSeparatorOptions.Builder
avoiding the need to create one manually viaThousandSeparatorOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tothousandsSeparator(ThousandSeparatorOptions)
.- Parameters:
thousandsSeparator
- a consumer that will call methods onThousandSeparatorOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-