Class FacetField
- java.lang.Object
-
- org.apache.solr.client.solrj.response.FacetField
-
- All Implemented Interfaces:
Serializable
public class FacetField extends Object implements Serializable
A utility class to hold the facet response. It could use the NamedList container, but for JSTL, it is nice to have something that implements List so it can be iterated- Since:
- solr 1.3
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFacetField.Count
-
Constructor Summary
Constructors Constructor Description FacetField(String n)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(String name, long cnt)Insert at the end of the listFacetFieldgetLimitingFields(long max)StringgetName()intgetValueCount()List<FacetField.Count>getValues()voidinsert(String name, long cnt)Insert at the beginning of the list.StringtoString()
-
-
-
Constructor Detail
-
FacetField
public FacetField(String n)
-
-
Method Detail
-
add
public void add(String name, long cnt)
Insert at the end of the list
-
insert
public void insert(String name, long cnt)
Insert at the beginning of the list.
-
getName
public String getName()
-
getValues
public List<FacetField.Count> getValues()
-
getValueCount
public int getValueCount()
-
getLimitingFields
public FacetField getLimitingFields(long max)
-
-