Uses of Interface
org.geotools.graph.structure.GraphVisitor
-
Packages that use GraphVisitor Package Description org.geotools.graph.path org.geotools.graph.structure org.geotools.graph.structure.basic org.geotools.graph.traverse.basic -
-
Uses of GraphVisitor in org.geotools.graph.path
Methods in org.geotools.graph.path with parameters of type GraphVisitor Modifier and Type Method Description List
ExhaustivePathFinder. getPaths(Node from, GraphVisitor visitor)
-
Uses of GraphVisitor in org.geotools.graph.structure
Methods in org.geotools.graph.structure with parameters of type GraphVisitor Modifier and Type Method Description List<? extends Graphable>
Graph. queryEdges(GraphVisitor visitor)
Performs a query against the edges of the graph.List<Node>
Graph. queryNodes(GraphVisitor visitor)
Performs a query against the nodes of the graph.void
Graph. visitEdges(GraphVisitor visitor)
Applies the visitor pattern to the edges of the graph.void
Graph. visitNodes(GraphVisitor visitor)
Applies the visitor pattern to the nodes of the graph. -
Uses of GraphVisitor in org.geotools.graph.structure.basic
Methods in org.geotools.graph.structure.basic with parameters of type GraphVisitor Modifier and Type Method Description List<Edge>
BasicGraph. queryEdges(GraphVisitor visitor)
List<Node>
BasicGraph. queryNodes(GraphVisitor visitor)
void
BasicGraph. visitEdges(GraphVisitor visitor)
void
BasicGraph. visitNodes(GraphVisitor visitor)
-
Uses of GraphVisitor in org.geotools.graph.traverse.basic
Methods in org.geotools.graph.traverse.basic that return GraphVisitor Modifier and Type Method Description GraphVisitor
SimpleGraphWalker. getVistor()
Returns the underlying visitor.Methods in org.geotools.graph.traverse.basic with parameters of type GraphVisitor Modifier and Type Method Description void
SimpleGraphWalker. setVisitor(GraphVisitor visitor)
Sets the underlying visitor.Constructors in org.geotools.graph.traverse.basic with parameters of type GraphVisitor Constructor Description SimpleGraphWalker(GraphVisitor visitor)
Creates a GraphWalker from a preexising GraphVisitor.
-