Class FieldStatsInfo
- java.lang.Object
- 
- org.apache.solr.client.solrj.response.FieldStatsInfo
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class FieldStatsInfo extends Object implements Serializable Holds stats info- Since:
- solr 1.4
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description FieldStatsInfo(NamedList<Object> nl, String fname)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetCardinality()The cardinality of of the set of values if requested, otherwise null.LonggetCount()LonggetCountDistinct()Collection<Object>getDistinctValues()Map<String,List<FieldStatsInfo>>getFacets()ObjectgetMax()ObjectgetMean()ObjectgetMin()LonggetMissing()StringgetName()Map<Double,Double>getPercentiles()The percentiles requested if any, otherwise null.DoublegetStddev()ObjectgetSum()DoublegetSumOfSquares()StringtoString()
 
- 
- 
- 
Method Detail- 
getNamepublic String getName() 
 - 
getMinpublic Object getMin() 
 - 
getMaxpublic Object getMax() 
 - 
getSumpublic Object getSum() 
 - 
getCountpublic Long getCount() 
 - 
getCountDistinctpublic Long getCountDistinct() 
 - 
getDistinctValuespublic Collection<Object> getDistinctValues() 
 - 
getMissingpublic Long getMissing() 
 - 
getMeanpublic Object getMean() 
 - 
getStddevpublic Double getStddev() 
 - 
getSumOfSquarespublic Double getSumOfSquares() 
 - 
getFacetspublic Map<String,List<FieldStatsInfo>> getFacets() 
 - 
getPercentilespublic Map<Double,Double> getPercentiles() The percentiles requested if any, otherwise null. If non-null then the iteration order will match the order the percentiles were originally specified in.
 - 
getCardinalitypublic Long getCardinality() The cardinality of of the set of values if requested, otherwise null.
 
- 
 
-