Interface DecimalColumnStatisticsData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DecimalColumnStatisticsData.Builder,DecimalColumnStatisticsData>,SdkBuilder<DecimalColumnStatisticsData.Builder,DecimalColumnStatisticsData>,SdkPojo
- Enclosing class:
- DecimalColumnStatisticsData
public static interface DecimalColumnStatisticsData.Builder extends SdkPojo, CopyableBuilder<DecimalColumnStatisticsData.Builder,DecimalColumnStatisticsData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DecimalColumnStatisticsData.BuildermaximumValue(Consumer<DecimalNumber.Builder> maximumValue)The highest value in the column.DecimalColumnStatisticsData.BuildermaximumValue(DecimalNumber maximumValue)The highest value in the column.default DecimalColumnStatisticsData.BuilderminimumValue(Consumer<DecimalNumber.Builder> minimumValue)The lowest value in the column.DecimalColumnStatisticsData.BuilderminimumValue(DecimalNumber minimumValue)The lowest value in the column.DecimalColumnStatisticsData.BuildernumberOfDistinctValues(Long numberOfDistinctValues)The number of distinct values in a column.DecimalColumnStatisticsData.BuildernumberOfNulls(Long numberOfNulls)The number of null values in the column.-
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
-
minimumValue
DecimalColumnStatisticsData.Builder minimumValue(DecimalNumber minimumValue)
The lowest value in the column.
- Parameters:
minimumValue- The lowest value in the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minimumValue
default DecimalColumnStatisticsData.Builder minimumValue(Consumer<DecimalNumber.Builder> minimumValue)
The lowest value in the column.
This is a convenience method that creates an instance of theDecimalNumber.Builderavoiding the need to create one manually viaDecimalNumber.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tominimumValue(DecimalNumber).- Parameters:
minimumValue- a consumer that will call methods onDecimalNumber.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
minimumValue(DecimalNumber)
-
maximumValue
DecimalColumnStatisticsData.Builder maximumValue(DecimalNumber maximumValue)
The highest value in the column.
- Parameters:
maximumValue- The highest value in the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maximumValue
default DecimalColumnStatisticsData.Builder maximumValue(Consumer<DecimalNumber.Builder> maximumValue)
The highest value in the column.
This is a convenience method that creates an instance of theDecimalNumber.Builderavoiding the need to create one manually viaDecimalNumber.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomaximumValue(DecimalNumber).- Parameters:
maximumValue- a consumer that will call methods onDecimalNumber.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
maximumValue(DecimalNumber)
-
numberOfNulls
DecimalColumnStatisticsData.Builder numberOfNulls(Long numberOfNulls)
The number of null values in the column.
- Parameters:
numberOfNulls- The number of null values in the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberOfDistinctValues
DecimalColumnStatisticsData.Builder numberOfDistinctValues(Long numberOfDistinctValues)
The number of distinct values in a column.
- Parameters:
numberOfDistinctValues- The number of distinct values in a column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-