Interface FacetsResult
-
- All Known Implementing Classes:
DefaultFacets
public interface FacetsResultRepresents the result of a facet query upon a existingSearchResult.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<Facet>getFacets()Returns all facets which have been queried.ExtendedSearchResultgetSearchResult()Returns the search result which these facets are based upon.java.util.Set<FacetValue>getValues(Facet facet)Returns the facet values of a specific facet.
-
-
-
Method Detail
-
getSearchResult
ExtendedSearchResult getSearchResult()
Returns the search result which these facets are based upon.
-
getFacets
java.util.Set<Facet> getFacets()
Returns all facets which have been queried.
-
getValues
java.util.Set<FacetValue> getValues(Facet facet)
Returns the facet values of a specific facet.- Parameters:
facet- the facet to get values for.
-
-