Package org.hibernate.search.query.facet
Interface RangeFacet<T>
-
- All Superinterfaces:
Facet
@Deprecated public interface RangeFacet<T> extends Facet
Deprecated.See the deprecation note onFacetContext.- Author:
- Hardy Ferentschik
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description TgetMax()Deprecated.TgetMin()Deprecated.booleanisIncludeMax()Deprecated.booleanisIncludeMin()Deprecated.-
Methods inherited from interface org.hibernate.search.query.facet.Facet
getCount, getFacetingName, getFieldName, getValue
-
-
-
-
Method Detail
-
getMin
T getMin()
Deprecated.- Returns:
- the lower boundary of this range
-
getMax
T getMax()
Deprecated.- Returns:
- the upper boundary of this range
-
isIncludeMin
boolean isIncludeMin()
Deprecated.- Returns:
trueif the lower boundary is included in the range,falseotherwise
-
isIncludeMax
boolean isIncludeMax()
Deprecated.- Returns:
trueif the upper boundary is included in the range,falseotherwise
-
-