Uses of Interface
org.geotools.graph.structure.DirectedNode
-
Packages that use DirectedNode Package Description org.geotools.graph.structure org.geotools.graph.structure.basic org.geotools.graph.structure.line org.geotools.graph.structure.opt -
-
Uses of DirectedNode in org.geotools.graph.structure
Methods in org.geotools.graph.structure that return DirectedNode Modifier and Type Method Description DirectedNodeDirectedEdge. getInNode()Returns the originating (in) node of the edge.DirectedNodeDirectedEdge. getOutNode()Returns the terminating (out) node of the edge.Methods in org.geotools.graph.structure with parameters of type DirectedNode Modifier and Type Method Description EdgeDirectedNode. getInEdge(DirectedNode other)Returns an edge that terminates at the node and originates from a specified node.List<? extends Edge>DirectedNode. getInEdges(DirectedNode other)Returns all edges that terminate at the node and originate from a specified node.EdgeDirectedNode. getOutEdge(DirectedNode other)Returns an edge that originates at the node and terminates at a specified node.List<? extends Edge>DirectedNode. getOutEdges(DirectedNode other)Returns all edges that originate at the node and terminate from at specified node. -
Uses of DirectedNode in org.geotools.graph.structure.basic
Classes in org.geotools.graph.structure.basic that implement DirectedNode Modifier and Type Class Description classBasicDirectedNodeBasic implementation of DirectedNode.Methods in org.geotools.graph.structure.basic that return DirectedNode Modifier and Type Method Description DirectedNodeBasicDirectedEdge. getInNode()DirectedNodeBasicDirectedEdge. getOutNode()Methods in org.geotools.graph.structure.basic that return types with arguments of type DirectedNode Modifier and Type Method Description Iterator<DirectedNode>BasicDirectedNode. getInRelated()Returns all in nodes of in edges.Iterator<DirectedNode>BasicDirectedNode. getOutRelated()Returns all out nodes of out edges.Iterator<DirectedNode>BasicDirectedNode. getRelated()Returns an iterator over all out nodes of out edges and in nodes of in edges.Methods in org.geotools.graph.structure.basic with parameters of type DirectedNode Modifier and Type Method Description EdgeBasicDirectedNode. getInEdge(DirectedNode other)List<DirectedEdge>BasicDirectedNode. getInEdges(DirectedNode other)EdgeBasicDirectedNode. getOutEdge(DirectedNode other)List<DirectedEdge>BasicDirectedNode. getOutEdges(DirectedNode other)Constructors in org.geotools.graph.structure.basic with parameters of type DirectedNode Constructor Description BasicDirectedEdge(DirectedNode in, DirectedNode out)Contstructs a new DirectedEdge. -
Uses of DirectedNode in org.geotools.graph.structure.line
Classes in org.geotools.graph.structure.line that implement DirectedNode Modifier and Type Class Description classBasicDirectedXYNodeBasic implementation of a directed XYNode extended from BasicDirectedNode.classOptDirectedXYNodeOptimized implementation of XYNode extended from OptDirectedNode. -
Uses of DirectedNode in org.geotools.graph.structure.opt
Classes in org.geotools.graph.structure.opt that implement DirectedNode Modifier and Type Class Description classOptDirectedNodeOptimized implementation of DirectedNode.Methods in org.geotools.graph.structure.opt that return DirectedNode Modifier and Type Method Description DirectedNodeOptDirectedEdge. getInNode()DirectedNodeOptDirectedEdge. getOutNode()Methods in org.geotools.graph.structure.opt with parameters of type DirectedNode Modifier and Type Method Description EdgeOptDirectedNode. getInEdge(DirectedNode other)List<Edge>OptDirectedNode. getInEdges(DirectedNode other)EdgeOptDirectedNode. getOutEdge(DirectedNode other)List<Edge>OptDirectedNode. getOutEdges(DirectedNode other)
-