org.elasticsearch.search.facet.datehistogram
Interface DateHistogramFacet.Entry

All Known Implementing Classes:
InternalCountAndTotalDateHistogramFacet.CountAndTotalEntry, InternalCountDateHistogramFacet.CountEntry
Enclosing interface:
DateHistogramFacet

public static interface DateHistogramFacet.Entry


Method Summary
 long count()
          The number of hits that fall within that key "range" or "interval".
 long getCount()
          The number of hits that fall within that key "range" or "interval".
 double getMean()
          The mean of this facet interval.
 long getTime()
          The time bucket start (in milliseconds).
 double getTotal()
          The sum / total of the value field that fall within this key "interval".
 double mean()
          The mean of this facet interval.
 long time()
          The time bucket start (in milliseconds).
 double total()
          The sum / total of the value field that fall within this key "interval".
 

Method Detail

time

long time()
The time bucket start (in milliseconds).


getTime

long getTime()
The time bucket start (in milliseconds).


count

long count()
The number of hits that fall within that key "range" or "interval".


getCount

long getCount()
The number of hits that fall within that key "range" or "interval".


total

double total()
The sum / total of the value field that fall within this key "interval".


getTotal

double getTotal()
The sum / total of the value field that fall within this key "interval".


mean

double mean()
The mean of this facet interval.


getMean

double getMean()
The mean of this facet interval.