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
Modifier and TypeMethodDescriptionnullValueFormatConfiguration
(Consumer<NullValueFormatConfiguration.Builder> nullValueFormatConfiguration) The options that determine the null value format configuration.nullValueFormatConfiguration
(NullValueFormatConfiguration nullValueFormatConfiguration) The options that determine the null value format configuration.numericFormatConfiguration
(Consumer<NumericFormatConfiguration.Builder> numericFormatConfiguration) The formatting configuration for numeric strings.numericFormatConfiguration
(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 Details
-
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.Builder
avoiding the need to create one manually viaNullValueFormatConfiguration.builder()
.When the
Consumer
completes,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:
-
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.Builder
avoiding the need to create one manually viaNumericFormatConfiguration.builder()
.When the
Consumer
completes,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:
-