Package com.arcadedb.query.sql.parser
Class IsDefinedCondition
- java.lang.Object
-
- com.arcadedb.query.sql.parser.SimpleNode
-
- com.arcadedb.query.sql.parser.BooleanExpression
-
- com.arcadedb.query.sql.parser.IsDefinedCondition
-
- All Implemented Interfaces:
Node
,SimpleBooleanExpression
public class IsDefinedCondition extends BooleanExpression implements SimpleBooleanExpression
-
-
Field Summary
Fields Modifier and Type Field Description protected Expression
expression
-
Fields inherited from class com.arcadedb.query.sql.parser.BooleanExpression
FALSE, TRUE
-
Fields inherited from class com.arcadedb.query.sql.parser.SimpleNode
children, firstToken, id, lastToken, parent, parser, value
-
-
Constructor Summary
Constructors Constructor Description IsDefinedCondition(int id)
IsDefinedCondition(SqlParser p, int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IsDefinedCondition
copy()
boolean
equals(Object o)
boolean
evaluate(Identifiable currentRecord, CommandContext ctx)
boolean
evaluate(Result currentRecord, CommandContext ctx)
void
extractSubQueries(SubQueryCollector collector)
protected List<Object>
getExternalCalculationConditions()
List<String>
getMatchPatternInvolvedAliases()
if the condition involved the current pattern (MATCH statement, eg.protected int
getNumberOfExternalCalculations()
int
hashCode()
boolean
isCacheable()
boolean
needsAliases(Set<String> aliases)
boolean
refersToParent()
boolean
supportsBasicCalculation()
void
toString(Map<String,Object> params, StringBuilder builder)
-
Methods inherited from class com.arcadedb.query.sql.parser.BooleanExpression
deserialize, deserializeFromOResult, encapsulateInAndBlock, flatten, getIndexedFunctionConditions, isEmpty, serialize, transformToUpdateItem
-
Methods inherited from class com.arcadedb.query.sql.parser.SimpleNode
childrenAccept, dump, getValue, jjtAccept, jjtAddChild, jjtClose, jjtGetChild, jjtGetFirstToken, jjtGetLastToken, jjtGetNumChildren, jjtGetParent, jjtGetValue, jjtOpen, jjtSetFirstToken, jjtSetLastToken, jjtSetParent, jjtSetValue, toString, toString
-
-
-
-
Field Detail
-
expression
protected Expression expression
-
-
Constructor Detail
-
IsDefinedCondition
public IsDefinedCondition(int id)
-
IsDefinedCondition
public IsDefinedCondition(SqlParser p, int id)
-
-
Method Detail
-
evaluate
public boolean evaluate(Identifiable currentRecord, CommandContext ctx)
- Specified by:
evaluate
in classBooleanExpression
-
evaluate
public boolean evaluate(Result currentRecord, CommandContext ctx)
- Specified by:
evaluate
in classBooleanExpression
-
toString
public void toString(Map<String,Object> params, StringBuilder builder)
- Overrides:
toString
in classSimpleNode
-
supportsBasicCalculation
public boolean supportsBasicCalculation()
- Specified by:
supportsBasicCalculation
in classBooleanExpression
- Returns:
- true if this expression can be calculated in plain Java, false otherwise
-
getNumberOfExternalCalculations
protected int getNumberOfExternalCalculations()
- Specified by:
getNumberOfExternalCalculations
in classBooleanExpression
- Returns:
- the number of sub-expressions that have to be calculated using an external engine
-
getExternalCalculationConditions
protected List<Object> getExternalCalculationConditions()
- Specified by:
getExternalCalculationConditions
in classBooleanExpression
- Returns:
- the sub-expressions that have to be calculated using an external engine
-
needsAliases
public boolean needsAliases(Set<String> aliases)
- Specified by:
needsAliases
in classBooleanExpression
-
copy
public IsDefinedCondition copy()
- Specified by:
copy
in classBooleanExpression
-
extractSubQueries
public void extractSubQueries(SubQueryCollector collector)
- Specified by:
extractSubQueries
in classBooleanExpression
-
refersToParent
public boolean refersToParent()
- Specified by:
refersToParent
in classBooleanExpression
-
getMatchPatternInvolvedAliases
public List<String> getMatchPatternInvolvedAliases()
Description copied from interface:SimpleBooleanExpression
if the condition involved the current pattern (MATCH statement, eg. $matched.something = foo), returns the name of involved pattern aliases ("something" in this case)- Specified by:
getMatchPatternInvolvedAliases
in interfaceSimpleBooleanExpression
- Specified by:
getMatchPatternInvolvedAliases
in classBooleanExpression
- Returns:
- a list of pattern aliases involved in this condition. Null it does not involve the pattern
-
isCacheable
public boolean isCacheable()
- Specified by:
isCacheable
in classBooleanExpression
-
-