Interface NumericalDimensionField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NumericalDimensionField.Builder,NumericalDimensionField>,SdkBuilder<NumericalDimensionField.Builder,NumericalDimensionField>,SdkPojo
- Enclosing class:
- NumericalDimensionField
public static interface NumericalDimensionField.Builder extends SdkPojo, CopyableBuilder<NumericalDimensionField.Builder,NumericalDimensionField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default NumericalDimensionField.Buildercolumn(Consumer<ColumnIdentifier.Builder> column)The column that is used in theNumericalDimensionField.NumericalDimensionField.Buildercolumn(ColumnIdentifier column)The column that is used in theNumericalDimensionField.NumericalDimensionField.BuilderfieldId(String fieldId)The custom field ID.default NumericalDimensionField.BuilderformatConfiguration(Consumer<NumberFormatConfiguration.Builder> formatConfiguration)The format configuration of the field.NumericalDimensionField.BuilderformatConfiguration(NumberFormatConfiguration formatConfiguration)The format configuration of the field.NumericalDimensionField.BuilderhierarchyId(String hierarchyId)The custom hierarchy ID.-
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, sdkFields
-
-
-
-
Method Detail
-
fieldId
NumericalDimensionField.Builder fieldId(String fieldId)
The custom field ID.
- Parameters:
fieldId- The custom field ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
NumericalDimensionField.Builder column(ColumnIdentifier column)
The column that is used in the
NumericalDimensionField.- Parameters:
column- The column that is used in theNumericalDimensionField.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
default NumericalDimensionField.Builder column(Consumer<ColumnIdentifier.Builder> column)
The column that is used in the
This is a convenience method that creates an instance of theNumericalDimensionField.ColumnIdentifier.Builderavoiding the need to create one manually viaColumnIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocolumn(ColumnIdentifier).- Parameters:
column- a consumer that will call methods onColumnIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
column(ColumnIdentifier)
-
hierarchyId
NumericalDimensionField.Builder hierarchyId(String hierarchyId)
The custom hierarchy ID.
- Parameters:
hierarchyId- The custom hierarchy ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
formatConfiguration
NumericalDimensionField.Builder formatConfiguration(NumberFormatConfiguration formatConfiguration)
The format configuration of the field.
- Parameters:
formatConfiguration- The format configuration of the field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
formatConfiguration
default NumericalDimensionField.Builder formatConfiguration(Consumer<NumberFormatConfiguration.Builder> formatConfiguration)
The format configuration of the field.
This is a convenience method that creates an instance of theNumberFormatConfiguration.Builderavoiding the need to create one manually viaNumberFormatConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toformatConfiguration(NumberFormatConfiguration).- Parameters:
formatConfiguration- a consumer that will call methods onNumberFormatConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
formatConfiguration(NumberFormatConfiguration)
-
-