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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description NumericSeparatorConfiguration.BuilderdecimalSeparator(String decimalSeparator)Determines the decimal separator.NumericSeparatorConfiguration.BuilderdecimalSeparator(NumericSeparatorSymbol decimalSeparator)Determines the decimal separator.default NumericSeparatorConfiguration.BuilderthousandsSeparator(Consumer<ThousandSeparatorOptions.Builder> thousandsSeparator)The options that determine the thousands separator configuration.NumericSeparatorConfiguration.BuilderthousandsSeparator(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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
decimalSeparator
NumericSeparatorConfiguration.Builder decimalSeparator(String 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:
NumericSeparatorSymbol,NumericSeparatorSymbol
-
decimalSeparator
NumericSeparatorConfiguration.Builder decimalSeparator(NumericSeparatorSymbol 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:
NumericSeparatorSymbol,NumericSeparatorSymbol
-
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:
thousandsSeparator(ThousandSeparatorOptions)
-
-