Uses of Class
org.geotools.graph.traverse.basic.AbstractGraphIterator
- 
Packages that use AbstractGraphIterator Package Description org.geotools.graph.traverse.basic org.geotools.graph.traverse.standard  - 
- 
Uses of AbstractGraphIterator in org.geotools.graph.traverse.basic
Subclasses of AbstractGraphIterator in org.geotools.graph.traverse.basic Modifier and Type Class Description classSourceGraphIteratorA GraphIterator that starts iteration from a specefied point. - 
Uses of AbstractGraphIterator in org.geotools.graph.traverse.standard
Subclasses of AbstractGraphIterator in org.geotools.graph.traverse.standard Modifier and Type Class Description classAStarIteratorA path iterator that uses a function (usually denoted f(x)) to determine the order in which the algorithm visits nodes, f(x) is a sum of two functions: The path-cost function (usually denoted g(x), which may or may not be a heuristic) An admissible "heuristic estimate" (usually denoted h(x)).classBreadthFirstIteratorIterates over the nodes of a graph in a Breadth First Search pattern starting from a specified node.classBreadthFirstTopologicalIteratorIterates over the nodes of a graph in Breadth First Topological Sort pattern.classDepthFirstIteratorIterates over the nodes of a graph in a Depth First Search pattern starting from a specified node.classDepthFirstTopologicalIteratorIterates over the nodes of a graph in Depth First Topological Sort pattern.classDijkstraIteratorIterates over the nodes of a graph in pattern using Dijkstra's Shortest Path Algorithm.classDirectedBreadthFirstIteratorclassDirectedBreadthFirstTopologicalIteratorclassDirectedDepthFirstIteratorclassDirectedDepthFirstTopologicalIteratorclassDirectedDijkstraIteratorclassNoBifurcationIteratorIterates over the nodes of a graph starting from a specified node, stopping at a bifurcation. 
 -