Package org.hibernate.search.query.dsl
Interface RangeMatchingContext
-
- All Superinterfaces:
FieldCustomization<RangeMatchingContext>
@Deprecated public interface RangeMatchingContext extends FieldCustomization<RangeMatchingContext>
Deprecated.See the deprecation note onQueryBuilder.- Author:
- Emmanuel Bernard
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceRangeMatchingContext.FromRangeContext<T>Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description RangeTerminationExcludableabove(Object above)Deprecated.The field value must be aboveaboveYou can exclude the valueaboveby calling.excludeLimit()RangeMatchingContextandField(String field)Deprecated.field / property the term query is executed onRangeTerminationExcludablebelow(Object below)Deprecated.The field value must be belowbelowYou can exclude the valuebelowby calling.excludeLimit()<T> RangeMatchingContext.FromRangeContext<T>from(T from)Deprecated.-
Methods inherited from interface org.hibernate.search.query.dsl.FieldCustomization
boostedTo, ignoreAnalyzer, ignoreFieldBridge
-
-
-
-
Method Detail
-
andField
RangeMatchingContext andField(String field)
Deprecated.field / property the term query is executed on- Parameters:
field- the name of the field- Returns:
- the
RangeMatchingContext
-
from
<T> RangeMatchingContext.FromRangeContext<T> from(T from)
Deprecated.
-
below
RangeTerminationExcludable below(Object below)
Deprecated.The field value must be belowbelowYou can exclude the valuebelowby calling.excludeLimit()- Parameters:
below- the lower limit of the range- Returns:
- a
RangeTerminationExcludable
-
above
RangeTerminationExcludable above(Object above)
Deprecated.The field value must be aboveaboveYou can exclude the valueaboveby calling.excludeLimit()- Parameters:
above- the upper limit of the range- Returns:
- a
RangeTerminationExcludable
-
-