Class InternalFullDateHistogramFacet.FullEntry

    • Constructor Summary

      Constructors

      Constructor and Description
      FullEntry(long time, long count, double min, double max, long totalCount, double total)
       
    • Method Summary

      Modifier and Type Method and Description
      long getCount()
      The number of hits that fall within that key "range" or "interval".
      double getMax()
      The maximum value.
      double getMean()
      The mean of this facet interval.
      double getMin()
      The minimum value.
      long getTime()
      The time bucket start (in milliseconds).
      double getTotal()
      The sum / total of the value field that fall within this key "interval".
      long getTotalCount()
      The total count of values aggregated to compute the total.
    • Constructor Detail

      • FullEntry

        public FullEntry(long time,
                         long count,
                         double min,
                         double max,
                         long totalCount,
                         double total)
    • Method Detail

      • getTime

        public long getTime()
        Description copied from interface: DateHistogramFacet.Entry
        The time bucket start (in milliseconds).
      • getCount

        public long getCount()
        Description copied from interface: DateHistogramFacet.Entry
        The number of hits that fall within that key "range" or "interval".
      • getTotal

        public double getTotal()
        Description copied from interface: DateHistogramFacet.Entry
        The sum / total of the value field that fall within this key "interval".
      • getTotalCount

        public long getTotalCount()
        Description copied from interface: DateHistogramFacet.Entry
        The total count of values aggregated to compute the total.
      • getMean

        public double getMean()
        Description copied from interface: DateHistogramFacet.Entry
        The mean of this facet interval.