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 ListExhaustivePathFinder. 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.voidGraph. visitEdges(GraphVisitor visitor)Applies the visitor pattern to the edges of the graph.voidGraph. 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)voidBasicGraph. visitEdges(GraphVisitor visitor)voidBasicGraph. 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 GraphVisitorSimpleGraphWalker. getVistor()Returns the underlying visitor.Methods in org.geotools.graph.traverse.basic with parameters of type GraphVisitor Modifier and Type Method Description voidSimpleGraphWalker. 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.
-