org.elasticsearch.search.facet.statistical
Interface StatisticalFacet

All Superinterfaces:
Facet
All Known Implementing Classes:
InternalStatisticalFacet

public interface StatisticalFacet
extends Facet

Numeric statistical information.


Field Summary
static String TYPE
          The type of the filter facet.
 
Method Summary
 long count()
          The number of values counted.
 long getCount()
          The number of values counted.
 double getMax()
          The maximum value.
 double getMean()
          The mean (average) of the values.
 double getMin()
          The minimum value.
 double getStdDeviation()
          Standard deviation of the values.
 double getSumOfSquares()
          The sum of squares of the values.
 double getTotal()
          The total (sum) of values.
 double getVariance()
          Variance of the values.
 double max()
          The maximum value.
 double mean()
          The mean (average) of the values.
 double min()
          The minimum value.
 double stdDeviation()
          Standard deviation of the values.
 double sumOfSquares()
          The sum of squares of the values.
 double total()
          The total (sum) of values.
 double variance()
          Variance of the values.
 
Methods inherited from interface org.elasticsearch.search.facet.Facet
getName, getType, name, type
 

Field Detail

TYPE

static final String TYPE
The type of the filter facet.

See Also:
Constant Field Values
Method Detail

count

long count()
The number of values counted.


getCount

long getCount()
The number of values counted.


total

double total()
The total (sum) of values.


getTotal

double getTotal()
The total (sum) of values.


sumOfSquares

double sumOfSquares()
The sum of squares of the values.


getSumOfSquares

double getSumOfSquares()
The sum of squares of the values.


mean

double mean()
The mean (average) of the values.


getMean

double getMean()
The mean (average) of the values.


min

double min()
The minimum value.


getMin

double getMin()
The minimum value.


max

double max()
The maximum value.


getMax

double getMax()
The maximum value.


variance

double variance()
Variance of the values.


getVariance

double getVariance()
Variance of the values.


stdDeviation

double stdDeviation()
Standard deviation of the values.


getStdDeviation

double getStdDeviation()
Standard deviation of the values.



Copyright © 2009-2012. All Rights Reserved.