Interface NumericSeparatorConfiguration.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<NumericSeparatorConfiguration.Builder,,NumericSeparatorConfiguration> SdkBuilder<NumericSeparatorConfiguration.Builder,,NumericSeparatorConfiguration> SdkPojo
- Enclosing class:
 NumericSeparatorConfiguration
@Mutable
@NotThreadSafe
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
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, 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.Builderavoiding the need to create one manually viaThousandSeparatorOptions.builder().When the
Consumercompletes,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:
 
 
 -