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 Summary
Constructors Constructor Description FieldStatsInfo(NamedList<Object> nl, String fname)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
getCardinality()
The cardinality of of the set of values if requested, otherwise null.Long
getCount()
Long
getCountDistinct()
Collection<Object>
getDistinctValues()
Map<String,List<FieldStatsInfo>>
getFacets()
Object
getMax()
Object
getMean()
Object
getMin()
Long
getMissing()
String
getName()
Map<Double,Double>
getPercentiles()
The percentiles requested if any, otherwise null.Double
getStddev()
Object
getSum()
Double
getSumOfSquares()
String
toString()
-
-
-
Method Detail
-
getName
public String getName()
-
getMin
public Object getMin()
-
getMax
public Object getMax()
-
getSum
public Object getSum()
-
getCount
public Long getCount()
-
getCountDistinct
public Long getCountDistinct()
-
getDistinctValues
public Collection<Object> getDistinctValues()
-
getMissing
public Long getMissing()
-
getMean
public Object getMean()
-
getStddev
public Double getStddev()
-
getSumOfSquares
public Double getSumOfSquares()
-
getFacets
public Map<String,List<FieldStatsInfo>> getFacets()
-
getPercentiles
public 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.
-
getCardinality
public Long getCardinality()
The cardinality of of the set of values if requested, otherwise null.
-
-