Package io.ebean.search
Class AbstractMatch
java.lang.Object
io.ebean.search.AbstractMatch
- Direct Known Subclasses:
Match,MultiMatch
public abstract class AbstractMatch extends Object
Options for the text match and multi match expressions.
-
Constructor Summary
Constructors Constructor Description AbstractMatch() -
Method Summary
Modifier and Type Method Description StringgetAnalyzer()Return the analyzer.doublegetBoost()Return the boost.doublegetCutoffFrequency()Return the cutoff frequency.StringgetFuzziness()Return the fuzziness.intgetMaxExpansions()Return the max expansions.StringgetMinShouldMatch()Return the minimum should match.intgetPrefixLength()Return the prefix length.StringgetRewrite()Return the rewrite option.StringgetZeroTerms()Return the zero terms option.booleanisOperatorAnd()Return 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.
-