Uses of Interface
org.geotools.graph.traverse.GraphWalker
- 
Packages that use GraphWalker Package Description org.geotools.graph.path org.geotools.graph.traverse org.geotools.graph.traverse.basic org.geotools.graph.util.graph  - 
- 
Uses of GraphWalker in org.geotools.graph.path
Classes in org.geotools.graph.path that implement GraphWalker Modifier and Type Class Description classAStarShortestPathFinderCalculates the shortest path between two nodes using the A Star algorithm (for details see http://en.wikipedia.org/wiki/A_star)classDijkstraShortestPathFinderCalculates node paths in a graph using Dijkstra's Shortest Path Algorithm. - 
Uses of GraphWalker in org.geotools.graph.traverse
Methods in org.geotools.graph.traverse that return GraphWalker Modifier and Type Method Description GraphWalkerGraphTraversal. getWalker()Returns the walker (visitor) traversing the graph of the graph.Methods in org.geotools.graph.traverse with parameters of type GraphWalker Modifier and Type Method Description voidGraphTraversal. setWalker(GraphWalker walker)Sets the walker (visitor) traversing the graph. - 
Uses of GraphWalker in org.geotools.graph.traverse.basic
Classes in org.geotools.graph.traverse.basic that implement GraphWalker Modifier and Type Class Description classCountingWalkerAn implementation of GraphWalker that counts the number of components visited.classDummyGraphWalkerA simple implementation of GraphWalker that does nothing but signal a graph traversal to continue.classSimpleGraphWalkerA simple implementation of GraphWalker that decorates a GraphVisitor.Methods in org.geotools.graph.traverse.basic that return GraphWalker Modifier and Type Method Description GraphWalkerAbstractGraphIterator. getWalker()Returns the walker being traversed over the graph.GraphWalkerBasicGraphTraversal. getWalker()Methods in org.geotools.graph.traverse.basic with parameters of type GraphWalker Modifier and Type Method Description voidBasicGraphTraversal. setWalker(GraphWalker walker)Constructors in org.geotools.graph.traverse.basic with parameters of type GraphWalker Constructor Description BasicGraphTraversal(Graph graph, GraphWalker walker, GraphIterator iterator)Constructs a new graph traversal.StagedGraphTraversal(Graph graph, GraphWalker walker, GraphIterator iterator) - 
Uses of GraphWalker in org.geotools.graph.util.graph
Classes in org.geotools.graph.util.graph that implement GraphWalker Modifier and Type Class Description classCycleDetectorDetects cycles in a graph.classDirectedCycleDetectorDetects cycles in a directed graph.classGraphPartitionerCreates a collection of connected graphs from a single graph. 
 -