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 DirectedNode
DirectedEdge. getInNode()
Returns the originating (in) node of the edge.DirectedNode
DirectedEdge. 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 Edge
DirectedNode. 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.Edge
DirectedNode. 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 class
BasicDirectedNode
Basic implementation of DirectedNode.Methods in org.geotools.graph.structure.basic that return DirectedNode Modifier and Type Method Description DirectedNode
BasicDirectedEdge. getInNode()
DirectedNode
BasicDirectedEdge. 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 Edge
BasicDirectedNode. getInEdge(DirectedNode other)
List<DirectedEdge>
BasicDirectedNode. getInEdges(DirectedNode other)
Edge
BasicDirectedNode. 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 class
BasicDirectedXYNode
Basic implementation of a directed XYNode extended from BasicDirectedNode.class
OptDirectedXYNode
Optimized 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 class
OptDirectedNode
Optimized implementation of DirectedNode.Methods in org.geotools.graph.structure.opt that return DirectedNode Modifier and Type Method Description DirectedNode
OptDirectedEdge. getInNode()
DirectedNode
OptDirectedEdge. getOutNode()
Methods in org.geotools.graph.structure.opt with parameters of type DirectedNode Modifier and Type Method Description Edge
OptDirectedNode. getInEdge(DirectedNode other)
List<Edge>
OptDirectedNode. getInEdges(DirectedNode other)
Edge
OptDirectedNode. getOutEdge(DirectedNode other)
List<Edge>
OptDirectedNode. getOutEdges(DirectedNode other)
-