Package com.arcadedb.query.sql.parser
Class ContainsTextCondition
- java.lang.Object
-
- com.arcadedb.query.sql.parser.SimpleNode
-
- com.arcadedb.query.sql.parser.BooleanExpression
-
- com.arcadedb.query.sql.parser.ContainsTextCondition
-
- All Implemented Interfaces:
Node
public class ContainsTextCondition extends BooleanExpression
-
-
Field Summary
Fields Modifier and Type Field Description protected Expression
left
protected Expression
right
-
Fields inherited from class com.arcadedb.query.sql.parser.BooleanExpression
FALSE, TRUE
-
Fields inherited from class com.arcadedb.query.sql.parser.SimpleNode
cachedStringForm, children, value
-
-
Constructor Summary
Constructors Constructor Description ContainsTextCondition(int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ContainsTextCondition
copy()
Boolean
evaluate(Identifiable currentRecord, CommandContext context)
Boolean
evaluate(Result currentRecord, CommandContext context)
void
extractSubQueries(SubQueryCollector collector)
protected SimpleNode[]
getCacheableElements()
protected Object[]
getIdentityElements()
Expression
getLeft()
List<String>
getMatchPatternInvolvedAliases()
Expression
getRight()
void
setLeft(Expression left)
void
setRight(Expression right)
void
toString(Map<String,Object> params, StringBuilder builder)
-
Methods inherited from class com.arcadedb.query.sql.parser.BooleanExpression
createRangeWith, encapsulateInAndBlock, flatten, getIndexedFunctionConditions, isAlwaysTrue, isEmpty, isIndexAware, resolveKeyFrom, resolveKeyTo, transformToUpdateItem
-
Methods inherited from class com.arcadedb.query.sql.parser.SimpleNode
equals, getValue, hashCode, isCacheable, jjtAddChild, jjtClose, jjtGetChild, jjtGetFirstToken, jjtGetLastToken, jjtGetNumChildren, jjtGetParent, jjtGetValue, jjtOpen, jjtSetFirstToken, jjtSetLastToken, jjtSetParent, jjtSetValue, refersToParent, toString, toString
-
-
-
-
Field Detail
-
left
protected Expression left
-
right
protected Expression right
-
-
Method Detail
-
evaluate
public Boolean evaluate(Identifiable currentRecord, CommandContext context)
- Specified by:
evaluate
in classBooleanExpression
-
evaluate
public Boolean evaluate(Result currentRecord, CommandContext context)
- Specified by:
evaluate
in classBooleanExpression
-
toString
public void toString(Map<String,Object> params, StringBuilder builder)
- Overrides:
toString
in classSimpleNode
-
copy
public ContainsTextCondition copy()
- Specified by:
copy
in classBooleanExpression
-
extractSubQueries
public void extractSubQueries(SubQueryCollector collector)
- Specified by:
extractSubQueries
in classBooleanExpression
-
getIdentityElements
protected Object[] getIdentityElements()
- Overrides:
getIdentityElements
in classSimpleNode
-
getMatchPatternInvolvedAliases
public List<String> getMatchPatternInvolvedAliases()
- Specified by:
getMatchPatternInvolvedAliases
in classBooleanExpression
-
getCacheableElements
protected SimpleNode[] getCacheableElements()
- Overrides:
getCacheableElements
in classSimpleNode
-
setLeft
public void setLeft(Expression left)
-
setRight
public void setRight(Expression right)
-
getLeft
public Expression getLeft()
-
getRight
public Expression getRight()
-
-