org.elasticsearch.search.facet.statistical
Interface StatisticalFacet

All Superinterfaces:
Facet
All Known Implementing Classes:
InternalStatisticalFacet

public interface StatisticalFacet
extends Facet

Numeric statistical information.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.elasticsearch.search.facet.Facet
Facet.Type
 
Method Summary
 long count()
          The number of values counted.
 java.lang.String fieldName()
          The field name of the facet.
 long getCount()
          The number of values counted.
 java.lang.String getFieldName()
          The field name of the facet.
 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
 

Method Detail

fieldName

java.lang.String fieldName()
The field name of the facet.


getFieldName

java.lang.String getFieldName()
The field name of the facet.


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.