Uses of Class
io.ebean.search.MultiMatch
| Package | Description |
|---|---|
| io.ebean | |
| io.ebean.search |
Provides text search expressions like Match, TextQueryString etc.
|
-
Uses of MultiMatch in io.ebean
Methods in io.ebean with parameters of type MultiMatch Modifier and Type Method Description ExpressionList<T>ExpressionList. multiMatch(String search, MultiMatch options)Add a multi-match expression using options.ExpressionExpressionFactory. textMultiMatch(String query, MultiMatch options)Create a Text Multi match expression (currently doc store/Elastic only). -
Uses of MultiMatch in io.ebean.search
Methods in io.ebean.search that return MultiMatch Modifier and Type Method Description MultiMatchMultiMatch. analyzer(String analyzer)Set the Analyzer to use for this expression.MultiMatchMultiMatch. boost(double boost)Set the boost.MultiMatchMultiMatch. cutoffFrequency(double cutoffFrequency)Set the cutoff frequency.static MultiMatchMultiMatch. fields(String... fields)Create with the given fields.MultiMatchMultiMatch. maxExpansions(int maxExpansions)Set the max expansions (for phrase prefix only).MultiMatchMultiMatch. minShouldMatch(String minShouldMatch)Set the minimum should match value.MultiMatchMultiMatch. opAnd()Use the AND operator (rather than OR).MultiMatchMultiMatch. opOr()Use the OR operator (rather than AND).MultiMatchMultiMatch. rewrite(String rewrite)Set the rewrite to use.MultiMatchMultiMatch. tieBreaker(double tieBreaker)Set the tieBreaker to use.MultiMatchMultiMatch. type(MultiMatch.Type type)Set the type of query.MultiMatchMultiMatch. zeroTerms(String zeroTerms)Set the zero terms.