Interface BooleanColumnStatisticsData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BooleanColumnStatisticsData.Builder,BooleanColumnStatisticsData>,SdkBuilder<BooleanColumnStatisticsData.Builder,BooleanColumnStatisticsData>,SdkPojo
- Enclosing class:
- BooleanColumnStatisticsData
public static interface BooleanColumnStatisticsData.Builder extends SdkPojo, CopyableBuilder<BooleanColumnStatisticsData.Builder,BooleanColumnStatisticsData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BooleanColumnStatisticsData.BuildernumberOfFalses(Long numberOfFalses)The number of false values in the column.BooleanColumnStatisticsData.BuildernumberOfNulls(Long numberOfNulls)The number of null values in the column.BooleanColumnStatisticsData.BuildernumberOfTrues(Long numberOfTrues)The number of true 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
-
numberOfTrues
BooleanColumnStatisticsData.Builder numberOfTrues(Long numberOfTrues)
The number of true values in the column.
- Parameters:
numberOfTrues- The number of true values in the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberOfFalses
BooleanColumnStatisticsData.Builder numberOfFalses(Long numberOfFalses)
The number of false values in the column.
- Parameters:
numberOfFalses- The number of false values in the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberOfNulls
BooleanColumnStatisticsData.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.
-
-