org.elasticsearch.search.facet.histogram
Interface HistogramFacet.Entry

All Known Implementing Classes:
InternalBoundedCountHistogramFacet.CountEntry, InternalBoundedFullHistogramFacet.FullEntry, InternalCountHistogramFacet.CountEntry, InternalFullHistogramFacet.FullEntry
Enclosing interface:
HistogramFacet

public static interface HistogramFacet.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".
 long getKey()
          The key value of the histogram.
 double getMax()
          The maximum value.
 double getMean()
          The mean of this facet interval.
 double getMin()
          The minimum value.
 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.
 long key()
          The key value of the histogram.
 double max()
          The maximum value.
 double mean()
          The mean of this facet interval.
 double min()
          The minimum value.
 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

key

long key()
The key value of the histogram.


getKey

long getKey()
The key value of the histogram.


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.