Package org.geotools.graph.structure.opt
Class OptDirectedEdge
- Object
-
- OptGraphable
-
- OptDirectedEdge
-
- All Implemented Interfaces:
Serializable,DirectedEdge,DirectedGraphable,Edge,Graphable
public class OptDirectedEdge extends OptGraphable implements DirectedEdge
Optimized implementation of DirectedEdge.- Author:
- Justin Deoliveira, Refractions Research Inc, jdeolive@refractions.net
- See Also:
DirectedEdge, Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classOptDirectedEdge.RelatedIteratorIterator used to iterate over adjacent edges.
-
Field Summary
-
Fields inherited from interface Edge
EQUAL_NODE_ORIENTATION, OPPOSITE_NODE_ORIENTATION, UNEQUAL_NODE_ORIENTATION
-
-
Constructor Summary
Constructors Constructor Description OptDirectedEdge(OptDirectedNode in, OptDirectedNode out)Constructs a new OptDirectedEdge.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareNodes(Edge other)Compares the node orientation of the edge with another edge.DirectedNodegetInNode()Returns the originating (in) node of the edge.Iterator<? extends Graphable>getInRelated()Returns other components related through an in relationship.NodegetNodeA()Returns the A node of the edge.NodegetNodeB()Returns the B node of the edge.NodegetOtherNode(Node node)Returns one of the two nodes of an edge.DirectedNodegetOutNode()Returns the terminating (out) node of the edge.Iterator<? extends Graphable>getOutRelated()Returns other components related through an out relationship.Iterator<? extends Graphable>getRelated()Returns an iterator over any related components.voidreverse()Unsupported Operation.-
Methods inherited from class OptGraphable
getCount, getID, getObject, isVisited, setCount, setID, setObject, setVisited
-
-
-
-
Constructor Detail
-
OptDirectedEdge
public OptDirectedEdge(OptDirectedNode in, OptDirectedNode out)
Constructs a new OptDirectedEdge.- Parameters:
in- Optimized in node.out- Optimized out node.
-
-
Method Detail
-
getInNode
public DirectedNode getInNode()
Description copied from interface:DirectedEdgeReturns the originating (in) node of the edge.- Specified by:
getInNodein interfaceDirectedEdge- Returns:
- The directed node at the source of the edge.
- See Also:
DirectedEdge.getInNode()
-
getOutNode
public DirectedNode getOutNode()
Description copied from interface:DirectedEdgeReturns the terminating (out) node of the edge.- Specified by:
getOutNodein interfaceDirectedEdge- Returns:
- The directed node at the destination of the edge.
- See Also:
DirectedEdge.getOutNode()
-
getNodeA
public Node getNodeA()
Description copied from interface:EdgeReturns the A node of the edge.- Specified by:
getNodeAin interfaceEdge- Returns:
- The A node.
- See Also:
Edge.getNodeA()
-
getNodeB
public Node getNodeB()
Description copied from interface:EdgeReturns the B node of the edge.- Specified by:
getNodeBin interfaceEdge- Returns:
- The B node.
- See Also:
Edge.getNodeB()
-
getOtherNode
public Node getOtherNode(Node node)
Description copied from interface:EdgeReturns one of the two nodes of an edge. If the specified node is node A, then node B is returned, and vice versa.- Specified by:
getOtherNodein interfaceEdge- Parameters:
node- The node opposite of the node to return.- Returns:
- Node A if node B is specified, node B if node A is specified.
- See Also:
Edge.getOtherNode(Node)
-
compareNodes
public int compareNodes(Edge other)
Description copied from interface:EdgeCompares the node orientation of the edge with another edge.- Specified by:
compareNodesin interfaceEdge- Returns:
- EQUAL_NODE_ORIENTATION : both nodes are equal in the correct order. UNEQUAL_NODE_ORIENTATION: both nodes are not equal OPPOSITE_NODE_ORIENTATION : both nodes are equal in opposite order.
- See Also:
Edge.compareNodes(Edge)
-
getRelated
public Iterator<? extends Graphable> getRelated()
Description copied from interface:GraphableReturns an iterator over any related components. A graph component is related to other components of the graph of similary type through some relationship.- Specified by:
getRelatedin interfaceGraphable- Returns:
- Iterator An iterator over other components of the graph that are related to the component.
- See Also:
Graphable.getRelated()
-
getInRelated
public Iterator<? extends Graphable> getInRelated()
Description copied from interface:DirectedGraphableReturns other components related through an in relationship.- Specified by:
getInRelatedin interfaceDirectedGraphable- Returns:
- An iterator over the other directed components related through an in relationship.
- See Also:
DirectedGraphable.getInRelated()
-
getOutRelated
public Iterator<? extends Graphable> getOutRelated()
Description copied from interface:DirectedGraphableReturns other components related through an out relationship.- Specified by:
getOutRelatedin interfaceDirectedGraphable- Returns:
- An iterator over the other directed components related through an out relationship.
- See Also:
DirectedGraphable.getOutRelated()
-
-