Uses of Interface
org.geotools.graph.traverse.GraphIterator
- 
Packages that use GraphIterator Package Description org.geotools.graph.traverse org.geotools.graph.traverse.basic org.geotools.graph.traverse.standard org.geotools.graph.util.graph  - 
- 
Uses of GraphIterator in org.geotools.graph.traverse
Methods in org.geotools.graph.traverse that return GraphIterator Modifier and Type Method Description GraphIteratorGraphTraversal. getIterator()Returns the iterator that specifies the order in which to visit graph components.Methods in org.geotools.graph.traverse with parameters of type GraphIterator Modifier and Type Method Description voidGraphTraversal. setIterator(GraphIterator iterator)Sets the iterator that specifies the order in which visit graph components. - 
Uses of GraphIterator in org.geotools.graph.traverse.basic
Classes in org.geotools.graph.traverse.basic that implement GraphIterator Modifier and Type Class Description classAbstractGraphIteratorAn abstract implementation of GraphIterator.classSourceGraphIteratorA GraphIterator that starts iteration from a specefied point.Methods in org.geotools.graph.traverse.basic that return GraphIterator Modifier and Type Method Description GraphIteratorBasicGraphTraversal. getIterator()Methods in org.geotools.graph.traverse.basic with parameters of type GraphIterator Modifier and Type Method Description voidBasicGraphTraversal. setIterator(GraphIterator iterator)Sets the iterator and intializes it.Constructors in org.geotools.graph.traverse.basic with parameters of type GraphIterator Constructor Description BasicGraphTraversal(Graph graph, GraphWalker walker, GraphIterator iterator)Constructs a new graph traversal.StagedGraphTraversal(Graph graph, GraphWalker walker, GraphIterator iterator) - 
Uses of GraphIterator in org.geotools.graph.traverse.standard
Classes in org.geotools.graph.traverse.standard that implement GraphIterator 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. - 
Uses of GraphIterator in org.geotools.graph.util.graph
Methods in org.geotools.graph.util.graph that return GraphIterator Modifier and Type Method Description protected GraphIteratorCycleDetector. createIterator()Creates the iterator to be used in the cycle detection.protected GraphIteratorDirectedCycleDetector. createIterator() 
 -