Package org.hibernate.search.query.facet
Interface FacetingRequest
-
@Deprecated public interface FacetingRequest
Deprecated.See the deprecation note onFacetContext.Faceting request interface.- Author:
- Hardy Ferentschik
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetFacetingName()Deprecated.StringgetFieldName()Deprecated.intgetMaxNumberOfFacets()Deprecated.FacetSortOrdergetSort()Deprecated.booleanhasZeroCountsIncluded()Deprecated.
-
-
-
Method Detail
-
getFacetingName
String getFacetingName()
Deprecated.- Returns:
- the name of this faceting request. The faceting name can be an arbitrary string.
-
getFieldName
String getFieldName()
Deprecated.- Returns:
- the name of the facet field this faceting request is defined on
-
getSort
FacetSortOrder getSort()
Deprecated.- Returns:
- the sort order of the returned
Facets for this request
-
getMaxNumberOfFacets
int getMaxNumberOfFacets()
Deprecated.- Returns:
- the maximum number of facets returned for this request
-
hasZeroCountsIncluded
boolean hasZeroCountsIncluded()
Deprecated.- Returns:
trueif facets with a count of 0 should be included in the returned facet list
-
-