Uses of Class
io.ebean.search.Match
-
Packages that use Match Package Description io.ebean io.ebean.search Provides text search expressions like Match, TextQueryString etc. -
-
Uses of Match in io.ebean
Methods in io.ebean with parameters of type Match Modifier and Type Method Description ExpressionList<T>ExpressionList. match(String propertyName, String search, Match options)Add a match expression with options.ExpressionExpressionFactory. textMatch(String propertyName, String search, Match options)Create a Text Match expression (currently doc store/Elastic only). -
Uses of Match in io.ebean.search
Methods in io.ebean.search that return Match Modifier and Type Method Description MatchMatch. analyzer(String analyzer)Set the Analyzer to use for this expression.MatchMatch. boost(double boost)Set the boost.MatchMatch. cutoffFrequency(double cutoffFrequency)Set the cutoff frequency.MatchMatch. maxExpansions(int maxExpansions)Set the max expansions (for phrase prefix only).MatchMatch. minShouldMatch(String minShouldMatch)Set the rewrite to use.MatchMatch. opAnd()Use the AND operator (rather than OR).MatchMatch. opOr()Use the OR operator (rather than AND).MatchMatch. phrase()Set this to be a "Phrase" type expression.MatchMatch. phrasePrefix()Set this to be a "Phrase Prefix" type expression.MatchMatch. rewrite(String rewrite)Set the rewrite to use.MatchMatch. zeroTerms(String zeroTerms)Set the zero terms.
-