Uses of Interface
org.geotools.graph.structure.DirectedEdge
Packages that use DirectedEdge
Package
Description
- 
Uses of DirectedEdge in org.geotools.graph.structureMethods in org.geotools.graph.structure with parameters of type DirectedEdgeModifier and TypeMethodDescriptionvoidDirectedNode.addIn(DirectedEdge e) Adds an edge to the in adjacency list of the node.voidDirectedNode.addOut(DirectedEdge e) Adds an edge to the out adjacency list of the node.voidDirectedNode.removeIn(DirectedEdge e) Removes an edge from the in adjacency list of the node.voidDirectedNode.removeOut(DirectedEdge e) Removes an edge from the out adjacency list of node.
- 
Uses of DirectedEdge in org.geotools.graph.structure.basicClasses in org.geotools.graph.structure.basic that implement DirectedEdgeMethods in org.geotools.graph.structure.basic that return types with arguments of type DirectedEdgeModifier and TypeMethodDescriptionBasicDirectedNode.getEdges()Returns the combination of both the in and out adjacency lists.A combination of the results of getInEdges(Node) and getOutEdges(Node).BasicDirectedNode.getInEdges()BasicDirectedNode.getInEdges(DirectedNode other) BasicDirectedEdge.getInRelated()Returns an iterator over the in edges of the in node.BasicDirectedNode.getOutEdges()BasicDirectedNode.getOutEdges(DirectedNode other) BasicDirectedEdge.getOutRelated()Returns an iterator over the out edges of the out node.Methods in org.geotools.graph.structure.basic with parameters of type DirectedEdgeModifier and TypeMethodDescriptionvoidBasicDirectedNode.addIn(DirectedEdge e) Adds an edge to the in adjacency list of the node which is an underlying List implementation.voidBasicDirectedNode.addOut(DirectedEdge e) Adds an edge to the ou adjacency list of the node which is an underlying List implementation.voidBasicDirectedNode.removeIn(DirectedEdge e) voidBasicDirectedNode.removeOut(DirectedEdge e) 
- 
Uses of DirectedEdge in org.geotools.graph.structure.optClasses in org.geotools.graph.structure.opt that implement DirectedEdgeMethods in org.geotools.graph.structure.opt that return DirectedEdgeModifier and TypeMethodDescriptionOptDirectedNode.getInEdgeArray()Returns the in adjacency edge array of the node.OptDirectedNode.getOutEdgeArray()Returns the out adjacency edge array of the node.Methods in org.geotools.graph.structure.opt that return types with arguments of type DirectedEdgeModifier and TypeMethodDescriptionOptDirectedNode.getEdges()OptDirectedNode.getInEdges()OptDirectedNode.getOutEdges()Methods in org.geotools.graph.structure.opt with parameters of type DirectedEdgeModifier and TypeMethodDescriptionvoidOptDirectedNode.addIn(DirectedEdge e) voidOptDirectedNode.addOut(DirectedEdge e) voidOptDirectedNode.removeIn(DirectedEdge e) Unsupported Operation.voidOptDirectedNode.removeOut(DirectedEdge e) Unsupported Operation.