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

All Known Implementing Classes:
InternalCountDateHistogramFacet.CountEntry, InternalFullDateHistogramFacet.FullEntry
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 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.
 double max()
          The maximum value.
 double mean()
          The mean of this facet interval.
 double min()
          The minimum value.
 long time()
          The time bucket start (in milliseconds).
 double total()
          The sum / total of the value field that fall within this key "interval".
 long totalCount()
          The total count of values aggregated to compute the total.
 

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".


totalCount

long totalCount()
The total count of values aggregated to compute the total.


getTotalCount

long getTotalCount()
The total count of values aggregated to compute the total.


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.


min

double min()
The minimum value.


getMin

double getMin()
The minimum value.


max

double max()
The maximum value.


getMax

double getMax()
The maximum value.



Copyright © 2009-2012. All Rights Reserved.