Class FullTextContains
- java.lang.Object
-
- org.apache.jackrabbit.oak.spi.query.fulltext.FullTextExpression
-
- org.apache.jackrabbit.oak.spi.query.fulltext.FullTextContains
-
public class FullTextContains extends FullTextExpression
A group of full-text expressions that reflects a "contains(...)" expression, and allows to access the original (unparsed) full text term.
-
-
Field Summary
-
Fields inherited from class org.apache.jackrabbit.oak.spi.query.fulltext.FullTextExpression
PRECEDENCE_AND, PRECEDENCE_OR, PRECEDENCE_TERM
-
-
Constructor Summary
Constructors Constructor Description FullTextContains(java.lang.String propertyName, java.lang.String rawText, FullTextExpression base)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(FullTextVisitor v)
Let the expression call the applicable visit method of the visitor.boolean
evaluate(java.lang.String value)
Evaluate whether the value matches the condition.FullTextExpression
getBase()
int
getPrecedence()
Get the operator precedence.java.lang.String
getPropertyName()
java.lang.String
getRawText()
boolean
isNot()
Whether the currentFullTextExpression
is aNOT
condition or not.java.lang.String
toString()
Get the string representation of the condition.-
Methods inherited from class org.apache.jackrabbit.oak.spi.query.fulltext.FullTextExpression
equals, hashCode
-
-
-
-
Constructor Detail
-
FullTextContains
public FullTextContains(java.lang.String propertyName, java.lang.String rawText, FullTextExpression base)
-
-
Method Detail
-
getPrecedence
public int getPrecedence()
Description copied from class:FullTextExpression
Get the operator precedence.- Specified by:
getPrecedence
in classFullTextExpression
- Returns:
- the precedence
-
evaluate
public boolean evaluate(java.lang.String value)
Description copied from class:FullTextExpression
Evaluate whether the value matches the condition.- Specified by:
evaluate
in classFullTextExpression
- Parameters:
value
- the value- Returns:
- true if it matches
-
toString
public java.lang.String toString()
Description copied from class:FullTextExpression
Get the string representation of the condition.- Specified by:
toString
in classFullTextExpression
-
accept
public boolean accept(FullTextVisitor v)
Description copied from class:FullTextExpression
Let the expression call the applicable visit method of the visitor.- Specified by:
accept
in classFullTextExpression
- Parameters:
v
- the visitor- Returns:
- true if the visit method returned true
-
getBase
public FullTextExpression getBase()
-
getPropertyName
public java.lang.String getPropertyName()
-
getRawText
public java.lang.String getRawText()
-
isNot
public boolean isNot()
Description copied from class:FullTextExpression
Whether the currentFullTextExpression
is aNOT
condition or not. Default is false- Overrides:
isNot
in classFullTextExpression
- Returns:
- true if the current condition represent a NOT, false otherwise.
-
-