Interface SourceStatistics.ColumnStatistics
- Enclosing interface:
SourceStatistics
public static interface SourceStatistics.ColumnStatistics
Statistics for an individual column.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the number of distinct values in this column, if known.maxValue()Returns the maximum value as a comparable object, if known.minValue()Returns the minimum value as a comparable object, if known.Returns the number of null values in this column, if known.
-
Method Details
-
nullCount
OptionalLong nullCount()Returns the number of null values in this column, if known. -
distinctCount
OptionalLong distinctCount()Returns the number of distinct values in this column, if known. -
minValue
Returns the minimum value as a comparable object, if known. The type depends on the column data type. -
maxValue
Returns the maximum value as a comparable object, if known. The type depends on the column data type.
-