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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAnalyzer()
Return the analyzer.double
getBoost()
Return the boost.double
getCutoffFrequency()
Return the cutoff frequency.String
getFuzziness()
Return the fuzziness.int
getMaxExpansions()
Return the max expansions.String
getMinShouldMatch()
Return the minimum should match.int
getPrefixLength()
Return the prefix length.String
getRewrite()
Return the rewrite option.String
getZeroTerms()
Return the zero terms option.boolean
isOperatorAnd()
Return true if using the AND operator otherwise using the OR operator.
-
-
-
Constructor Detail
-
AbstractMatch
public AbstractMatch()
-
-
Method Detail
-
isOperatorAnd
public boolean isOperatorAnd()
Return true if using the AND operator otherwise using the OR operator.
-
getBoost
public double getBoost()
Return the boost.
-
getMinShouldMatch
public String getMinShouldMatch()
Return the minimum should match.
-
getZeroTerms
public String getZeroTerms()
Return the zero terms option.
-
getCutoffFrequency
public double getCutoffFrequency()
Return the cutoff frequency.
-
getMaxExpansions
public int getMaxExpansions()
Return the max expansions.
-
getAnalyzer
public String getAnalyzer()
Return the analyzer.
-
getFuzziness
public String getFuzziness()
Return the fuzziness.
-
getPrefixLength
public int getPrefixLength()
Return the prefix length.
-
getRewrite
public String getRewrite()
Return the rewrite option.
-
-