Interface BinaryColumnStatisticsData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BinaryColumnStatisticsData.Builder,BinaryColumnStatisticsData>,SdkBuilder<BinaryColumnStatisticsData.Builder,BinaryColumnStatisticsData>,SdkPojo
- Enclosing class:
- BinaryColumnStatisticsData
public static interface BinaryColumnStatisticsData.Builder extends SdkPojo, CopyableBuilder<BinaryColumnStatisticsData.Builder,BinaryColumnStatisticsData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BinaryColumnStatisticsData.BuilderaverageLength(Double averageLength)The average bit sequence length in the column.BinaryColumnStatisticsData.BuildermaximumLength(Long maximumLength)The size of the longest bit sequence in the column.BinaryColumnStatisticsData.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
-
maximumLength
BinaryColumnStatisticsData.Builder maximumLength(Long maximumLength)
The size of the longest bit sequence in the column.
- Parameters:
maximumLength- The size of the longest bit sequence in the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
averageLength
BinaryColumnStatisticsData.Builder averageLength(Double averageLength)
The average bit sequence length in the column.
- Parameters:
averageLength- The average bit sequence length in the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberOfNulls
BinaryColumnStatisticsData.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.
-
-