Uses of Class
io.ebean.search.TextCommonTerms
-
Packages that use TextCommonTerms Package Description io.ebean io.ebean.search Provides text search expressions like Match, TextQueryString etc. -
-
Uses of TextCommonTerms in io.ebean
Methods in io.ebean with parameters of type TextCommonTerms Modifier and Type Method Description Expression
ExpressionFactory. textCommonTerms(String search, TextCommonTerms options)
Create a text common terms expression (currently doc store/Elastic only).ExpressionList<T>
ExpressionList. textCommonTerms(String search, TextCommonTerms options)
Add common terms expression. -
Uses of TextCommonTerms in io.ebean.search
Methods in io.ebean.search that return TextCommonTerms Modifier and Type Method Description TextCommonTerms
TextCommonTerms. cutoffFrequency(double cutoffFrequency)
Set the cutoff frequency.TextCommonTerms
TextCommonTerms. highFreqOperatorAnd(boolean opAnd)
Set to true if high frequency terms should use AND operator.TextCommonTerms
TextCommonTerms. lowFreqOperatorAnd(boolean opAnd)
Set to true if low frequency terms should use AND operator.TextCommonTerms
TextCommonTerms. minShouldMatch(String minShouldMatch)
Set the minimum should match.TextCommonTerms
TextCommonTerms. minShouldMatchHighFreq(String minShouldMatchHighFreq)
Set the minimum should match for high frequency terms.TextCommonTerms
TextCommonTerms. minShouldMatchLowFreq(String minShouldMatchLowFreq)
Set the minimum should match for low frequency terms.
-