Uses of Class
io.ebean.search.TextSimple
-
Packages that use TextSimple Package Description io.ebean io.ebean.search Provides text search expressions like Match, TextQueryString etc. -
-
Uses of TextSimple in io.ebean
Methods in io.ebean with parameters of type TextSimple Modifier and Type Method Description Expression
ExpressionFactory. textSimple(String search, TextSimple options)
Create a text simple query expression (currently doc store/Elastic only).ExpressionList<T>
ExpressionList. textSimple(String search, TextSimple options)
Add a simple query string expression. -
Uses of TextSimple in io.ebean.search
Methods in io.ebean.search that return TextSimple Modifier and Type Method Description TextSimple
TextSimple. analyzer(String analyzer)
Set the analyzerTextSimple
TextSimple. analyzeWildcard(boolean analyzeWildcard)
Set to true to use analyze wildcard.TextSimple
TextSimple. fields(String... fields)
Set the fields.TextSimple
TextSimple. flags(String flags)
Set the flags.TextSimple
TextSimple. lenient(boolean lenient)
Set the lenient mode.TextSimple
TextSimple. locale(String locale)
Set the locale.TextSimple
TextSimple. lowercaseExpandedTerms(boolean lowercaseExpandedTerms)
Set the false to not use lowercase expanded terms.TextSimple
TextSimple. minShouldMatch(String minShouldMatch)
Set the minimum should match.TextSimple
TextSimple. opAnd()
Use AND as the default operator.TextSimple
TextSimple. opOr()
Use OR as the default operator.
-