Interface Graph.Visitor<U>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvisitEdge(String fromKey, String toKey, Graph.EdgeType edgeType)visit an edge.voidvisitNode(U node)visit a node.
-
-
-
Method Detail
-
visitNode
void visitNode(U node)
visit a node.- Parameters:
node- the node to visited
-
visitEdge
void visitEdge(String fromKey, String toKey, Graph.EdgeType edgeType)
visit an edge.- Parameters:
fromKey- key of the from nodetoKey- key of the to nodeedgeType- the edge type
-
-