Class NodeMatchClause
java.lang.Object
se.liu.ida.hefquin.engine.wrappers.lpg.query.impl.match.NodeMatchClause
- All Implemented Interfaces:
CypherExpression
,MatchClause
Represents a node match clause
For example, MATCH (x)
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
getNode()
getVars()
Obtains the set of variables defined in the patternint
hashCode()
boolean
isRedundantWith
(MatchClause match) Checks if two match statements are redundant.toString()
void
visit
(CypherExpressionVisitor visitor) accepts aCypherExpressionVisitor
and propagates the visit recursively when required.
-
Field Details
-
node
-
-
Constructor Details
-
NodeMatchClause
-
-
Method Details
-
toString
-
isRedundantWith
Description copied from interface:MatchClause
Checks if two match statements are redundant. This can happen if they are exactly the same pattern, or if one is a node pattern and the other a path pattern that contains it. For instance, MATCH (x) is redundant with MATCH (x)-[y]->(z), MATCH (x), and MATCH (v)-[w]->(x). Note that this is not symmetric.- Specified by:
isRedundantWith
in interfaceMatchClause
- Parameters:
match
- the other match clause to test- Returns:
- true if the clauses are redundant, i.e., if both patterns share nodes
-
getVars
Description copied from interface:MatchClause
Obtains the set of variables defined in the pattern- Specified by:
getVars
in interfaceCypherExpression
- Specified by:
getVars
in interfaceMatchClause
- Returns:
- a set of CypherVar with the variables defined in the pattern For example, the object that represents the pattern MATCH (x)-[e]->(y) returns the set {x, e, y}.
-
visit
Description copied from interface:CypherExpression
accepts aCypherExpressionVisitor
and propagates the visit recursively when required.- Specified by:
visit
in interfaceCypherExpression
-
equals
-
hashCode
public int hashCode() -
getNode
-