Interface ThousandSeparatorOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ThousandSeparatorOptions.Builder,ThousandSeparatorOptions>,SdkBuilder<ThousandSeparatorOptions.Builder,ThousandSeparatorOptions>,SdkPojo
- Enclosing class:
- ThousandSeparatorOptions
@Mutable @NotThreadSafe public static interface ThousandSeparatorOptions.Builder extends SdkPojo, CopyableBuilder<ThousandSeparatorOptions.Builder,ThousandSeparatorOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ThousandSeparatorOptions.BuildergroupingStyle(String groupingStyle)Determines the way numbers are styled to accommodate different readability standards.ThousandSeparatorOptions.BuildergroupingStyle(DigitGroupingStyle groupingStyle)Determines the way numbers are styled to accommodate different readability standards.ThousandSeparatorOptions.Buildersymbol(String symbol)Determines the thousands separator symbol.ThousandSeparatorOptions.Buildersymbol(NumericSeparatorSymbol symbol)Determines the thousands separator symbol.ThousandSeparatorOptions.Buildervisibility(String visibility)Determines the visibility of the thousands separator.ThousandSeparatorOptions.Buildervisibility(Visibility visibility)Determines the visibility of the thousands separator.-
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
-
symbol
ThousandSeparatorOptions.Builder symbol(String symbol)
Determines the thousands separator symbol.
- Parameters:
symbol- Determines the thousands separator symbol.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NumericSeparatorSymbol,NumericSeparatorSymbol
-
symbol
ThousandSeparatorOptions.Builder symbol(NumericSeparatorSymbol symbol)
Determines the thousands separator symbol.
- Parameters:
symbol- Determines the thousands separator symbol.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NumericSeparatorSymbol,NumericSeparatorSymbol
-
visibility
ThousandSeparatorOptions.Builder visibility(String visibility)
Determines the visibility of the thousands separator.
- Parameters:
visibility- Determines the visibility of the thousands separator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
visibility
ThousandSeparatorOptions.Builder visibility(Visibility visibility)
Determines the visibility of the thousands separator.
- Parameters:
visibility- Determines the visibility of the thousands separator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
groupingStyle
ThousandSeparatorOptions.Builder groupingStyle(String groupingStyle)
Determines the way numbers are styled to accommodate different readability standards. The
DEFAULTvalue uses the standard international grouping system and groups numbers by the thousands. TheLAKHSvalue uses the Indian numbering system and groups numbers by lakhs and crores.- Parameters:
groupingStyle- Determines the way numbers are styled to accommodate different readability standards. TheDEFAULTvalue uses the standard international grouping system and groups numbers by the thousands. TheLAKHSvalue uses the Indian numbering system and groups numbers by lakhs and crores.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DigitGroupingStyle,DigitGroupingStyle
-
groupingStyle
ThousandSeparatorOptions.Builder groupingStyle(DigitGroupingStyle groupingStyle)
Determines the way numbers are styled to accommodate different readability standards. The
DEFAULTvalue uses the standard international grouping system and groups numbers by the thousands. TheLAKHSvalue uses the Indian numbering system and groups numbers by lakhs and crores.- Parameters:
groupingStyle- Determines the way numbers are styled to accommodate different readability standards. TheDEFAULTvalue uses the standard international grouping system and groups numbers by the thousands. TheLAKHSvalue uses the Indian numbering system and groups numbers by lakhs and crores.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DigitGroupingStyle,DigitGroupingStyle
-
-