Interface StringFormatConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StringFormatConfiguration.Builder,StringFormatConfiguration>,SdkBuilder<StringFormatConfiguration.Builder,StringFormatConfiguration>,SdkPojo
- Enclosing class:
- StringFormatConfiguration
@Mutable @NotThreadSafe public static interface StringFormatConfiguration.Builder extends SdkPojo, CopyableBuilder<StringFormatConfiguration.Builder,StringFormatConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StringFormatConfiguration.BuildernullValueFormatConfiguration(Consumer<NullValueFormatConfiguration.Builder> nullValueFormatConfiguration)The options that determine the null value format configuration.StringFormatConfiguration.BuildernullValueFormatConfiguration(NullValueFormatConfiguration nullValueFormatConfiguration)The options that determine the null value format configuration.default StringFormatConfiguration.BuildernumericFormatConfiguration(Consumer<NumericFormatConfiguration.Builder> numericFormatConfiguration)The formatting configuration for numeric strings.StringFormatConfiguration.BuildernumericFormatConfiguration(NumericFormatConfiguration numericFormatConfiguration)The formatting configuration for numeric strings.-
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
-
nullValueFormatConfiguration
StringFormatConfiguration.Builder nullValueFormatConfiguration(NullValueFormatConfiguration nullValueFormatConfiguration)
The options that determine the null value format configuration.
- Parameters:
nullValueFormatConfiguration- The options that determine the null value format configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nullValueFormatConfiguration
default StringFormatConfiguration.Builder nullValueFormatConfiguration(Consumer<NullValueFormatConfiguration.Builder> nullValueFormatConfiguration)
The options that determine the null value format configuration.
This is a convenience method that creates an instance of theNullValueFormatConfiguration.Builderavoiding the need to create one manually viaNullValueFormatConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tonullValueFormatConfiguration(NullValueFormatConfiguration).- Parameters:
nullValueFormatConfiguration- a consumer that will call methods onNullValueFormatConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
nullValueFormatConfiguration(NullValueFormatConfiguration)
-
numericFormatConfiguration
StringFormatConfiguration.Builder numericFormatConfiguration(NumericFormatConfiguration numericFormatConfiguration)
The formatting configuration for numeric strings.
- Parameters:
numericFormatConfiguration- The formatting configuration for numeric strings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numericFormatConfiguration
default StringFormatConfiguration.Builder numericFormatConfiguration(Consumer<NumericFormatConfiguration.Builder> numericFormatConfiguration)
The formatting configuration for numeric strings.
This is a convenience method that creates an instance of theNumericFormatConfiguration.Builderavoiding the need to create one manually viaNumericFormatConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tonumericFormatConfiguration(NumericFormatConfiguration).- Parameters:
numericFormatConfiguration- 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:
numericFormatConfiguration(NumericFormatConfiguration)
-
-