Package org.hibernate.search.query.dsl
Interface TermMatchingContext
-
- All Superinterfaces:
FieldCustomization<TermMatchingContext>
@Deprecated public interface TermMatchingContext extends FieldCustomization<TermMatchingContext>
Deprecated.See the deprecation note onQueryBuilder.- Author:
- Emmanuel Bernard
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description TermMatchingContextandField(String field)Deprecated.field / property the term query is executed onTermTerminationmatching(Object value)Deprecated.Value searched in the field or fields.-
Methods inherited from interface org.hibernate.search.query.dsl.FieldCustomization
boostedTo, ignoreAnalyzer, ignoreFieldBridge
-
-
-
-
Method Detail
-
matching
TermTermination matching(Object value)
Deprecated.Value searched in the field or fields. The value is passed to the field's: - field bridge - analyzer (unless ignoreAnalyzer is called).- Parameters:
value- the value to match- Returns:
thisfor method chaining
-
andField
TermMatchingContext andField(String field)
Deprecated.field / property the term query is executed on- Parameters:
field- another field involved in the query- Returns:
thisfor method chaining
-
-