Interface ColumnStatistics
@Evolving
public interface ColumnStatistics
An interface to represent column statistics, which is part of
 
Statistics.- Since:
 - 3.4.0
 
- 
Method Summary
Modifier and TypeMethodDescriptiondefault OptionalLongavgLen()default OptionalLongmax()default OptionalLongmaxLen()min()default OptionalLong 
- 
Method Details
- 
distinctCount
- Returns:
 - number of distinct values in the column
 
 - 
min
- Returns:
 - minimum value in the column
 
 - 
max
- Returns:
 - maximum value in the column
 
 - 
nullCount
- Returns:
 - number of nulls in the column
 
 - 
avgLen
- Returns:
 - average length of the values in the column
 
 - 
maxLen
- Returns:
 - maximum length of the values in the column
 
 - 
histogram
- Returns:
 - histogram of the values in the column
 
 
 -