Package io.ebean.search
Class AbstractMatch
java.lang.Object
io.ebean.search.AbstractMatch
- Direct Known Subclasses:
Match,MultiMatch
Options for the text match and multi match expressions.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturn the analyzer.doublegetBoost()Return the boost.doubleReturn the cutoff frequency.Return the fuzziness.intReturn the max expansions.Return the minimum should match.intReturn the prefix length.Return the rewrite option.Return the zero terms option.booleanReturn true if using the AND operator otherwise using the OR operator.
-
Constructor Details
-
AbstractMatch
public AbstractMatch()
-
-
Method Details
-
isOperatorAnd
Return true if using the AND operator otherwise using the OR operator. -
getBoost
Return the boost. -
getMinShouldMatch
Return the minimum should match. -
getZeroTerms
Return the zero terms option. -
getCutoffFrequency
Return the cutoff frequency. -
getMaxExpansions
Return the max expansions. -
getAnalyzer
Return the analyzer. -
getFuzziness
Return the fuzziness. -
getPrefixLength
Return the prefix length. -
getRewrite
Return the rewrite option.
-