Package org.neo4j.gds.core.cypher
Interface CypherGraphStore.StateVisitor
-
- All Known Implementing Classes:
CypherGraphStore.StateVisitor.Adapter,RelationshipIds
- Enclosing class:
- CypherGraphStore
public static interface CypherGraphStore.StateVisitor
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCypherGraphStore.StateVisitor.Adapter
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnodeLabelAdded(java.lang.String nodeLabel)voidnodePropertyAdded(java.lang.String propertyKey)voidnodePropertyRemoved(java.lang.String propertyKey)voidrelationshipPropertyAdded(java.lang.String relationshipProperty)voidrelationshipTypeAdded(java.lang.String relationshipType)
-
-
-
Method Detail
-
nodePropertyRemoved
void nodePropertyRemoved(java.lang.String propertyKey)
-
nodePropertyAdded
void nodePropertyAdded(java.lang.String propertyKey)
-
nodeLabelAdded
void nodeLabelAdded(java.lang.String nodeLabel)
-
relationshipTypeAdded
void relationshipTypeAdded(java.lang.String relationshipType)
-
relationshipPropertyAdded
void relationshipPropertyAdded(java.lang.String relationshipProperty)
-
-