Package org.apache.orc
Interface DateColumnStatistics
- All Superinterfaces:
ColumnStatistics
Statistics for DATE columns.
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Use #getMaximumLocalDate insteadlong
Get the maximum value for the column.Get the maximum value for the column.Deprecated.Use #getMinimumLocalDate insteadlong
Get the minimum value for the column.Get the minimum value for the column.Methods inherited from interface org.apache.orc.ColumnStatistics
getBytesOnDisk, getNumberOfValues, hasNull
-
Method Details
-
getMinimumLocalDate
ChronoLocalDate getMinimumLocalDate()Get the minimum value for the column.- Returns:
- minimum value as a LocalDate
-
getMinimumDayOfEpoch
long getMinimumDayOfEpoch()Get the minimum value for the column.- Returns:
- minimum value as days since epoch (1 Jan 1970)
-
getMaximumLocalDate
ChronoLocalDate getMaximumLocalDate()Get the maximum value for the column.- Returns:
- maximum value as a LocalDate
-
getMaximumDayOfEpoch
long getMaximumDayOfEpoch()Get the maximum value for the column.- Returns:
- maximum value as days since epoch (1 Jan 1970)
-
getMinimum
Date getMinimum()Deprecated.Use #getMinimumLocalDate insteadGet the minimum value for the column.- Returns:
- minimum value
-
getMaximum
Date getMaximum()Deprecated.Use #getMaximumLocalDate insteadGet the maximum value for the column.- Returns:
- maximum value
-