Interface DoubleColumnStatisticsData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DoubleColumnStatisticsData.Builder,DoubleColumnStatisticsData>,SdkBuilder<DoubleColumnStatisticsData.Builder,DoubleColumnStatisticsData>,SdkPojo
- Enclosing class:
- DoubleColumnStatisticsData
public static interface DoubleColumnStatisticsData.Builder extends SdkPojo, CopyableBuilder<DoubleColumnStatisticsData.Builder,DoubleColumnStatisticsData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DoubleColumnStatisticsData.BuildermaximumValue(Double maximumValue)The highest value in the column.DoubleColumnStatisticsData.BuilderminimumValue(Double minimumValue)The lowest value in the column.DoubleColumnStatisticsData.BuildernumberOfDistinctValues(Long numberOfDistinctValues)The number of distinct values in a column.DoubleColumnStatisticsData.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
DoubleColumnStatisticsData.Builder minimumValue(Double 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.
-
maximumValue
DoubleColumnStatisticsData.Builder maximumValue(Double 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.
-
numberOfNulls
DoubleColumnStatisticsData.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
DoubleColumnStatisticsData.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.
-
-