Interface DateColumnStatistics

All Superinterfaces:
ColumnStatistics

public interface DateColumnStatistics extends ColumnStatistics
Statistics for DATE columns.
  • 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 instead
      Get the minimum value for the column.
      Returns:
      minimum value
    • getMaximum

      Date getMaximum()
      Deprecated.
      Use #getMaximumLocalDate instead
      Get the maximum value for the column.
      Returns:
      maximum value