Interface SearchFacetField
-
- All Known Implementing Classes:
BaseSearchFacetField
public interface SearchFacetFieldHolds the faceting information from a query result.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceSearchFacetField.CountHolds one facet from this field.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()The name of the field that was faceted.List<SearchFacetField.Count>getValues()The different facet values.
-
-
-
Method Detail
-
getName
String getName()
The name of the field that was faceted. Never null.
-
getValues
List<SearchFacetField.Count> getValues()
The different facet values. May return an empty list, but never null.
-
-