java.lang.Object
io.ebean.search.AbstractMatch
- Direct Known Subclasses:
Match
,MultiMatch
Options for the text match and multi match expressions.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn the analyzer.double
getBoost()
Return the boost.double
Return the cutoff frequency.Return the fuzziness.int
Return the max expansions.Return the minimum should match.int
Return the prefix length.Return the rewrite option.Return the zero terms option.boolean
Return true if using the AND operator otherwise using the OR operator.
-
Field Details
-
operatorAnd
protected boolean operatorAnd -
analyzer
-
boost
protected double boost -
minShouldMatch
-
maxExpansions
protected int maxExpansions -
zeroTerms
-
cutoffFrequency
protected double cutoffFrequency -
fuzziness
-
prefixLength
protected int prefixLength -
rewrite
-
-
Constructor Details
-
AbstractMatch
public AbstractMatch()
-
-
Method Details
-
isOperatorAnd
public boolean isOperatorAnd()Return true if using the AND operator otherwise using the OR operator. -
getBoost
public double getBoost()Return the boost. -
getMinShouldMatch
Return the minimum should match. -
getZeroTerms
Return the zero terms option. -
getCutoffFrequency
public double getCutoffFrequency()Return the cutoff frequency. -
getMaxExpansions
public int getMaxExpansions()Return the max expansions. -
getAnalyzer
Return the analyzer. -
getFuzziness
Return the fuzziness. -
getPrefixLength
public int getPrefixLength()Return the prefix length. -
getRewrite
Return the rewrite option.
-