Package org.apache.orc
Interface DoubleColumnStatistics
- All Superinterfaces:
ColumnStatistics
Statistics for float and double columns.
-
Method Summary
Modifier and TypeMethodDescriptiondouble
Get the largest value in the column.double
Get the smallest value in the column.double
getSum()
Get the sum of the values in the column.Methods inherited from interface org.apache.orc.ColumnStatistics
getBytesOnDisk, getNumberOfValues, hasNull
-
Method Details
-
getMinimum
double getMinimum()Get the smallest value in the column. Only defined if getNumberOfValues is non-zero.- Returns:
- the minimum
-
getMaximum
double getMaximum()Get the largest value in the column. Only defined if getNumberOfValues is non-zero.- Returns:
- the maximum
-
getSum
double getSum()Get the sum of the values in the column.- Returns:
- the sum
-