EdgeIterable |
GraphDiff.getAddedEdges() |
Gets all added edges.
|
EdgeIterable |
Graph.getEdges() |
Gets all the edges in the graph.
|
EdgeIterable |
Graph.getEdges(int type) |
Gets all the edges of a particular type in the graph.
|
EdgeIterable |
Graph.getEdges(Node node) |
Gets all edges incident to a given node.
|
EdgeIterable |
Graph.getEdges(Node node,
int type) |
Gets all edges incident to a given node with the given edge type.
|
EdgeIterable |
Graph.getEdges(Node node1,
Node node2) |
Get the edges adjacent to node1 and node2.
|
EdgeIterable |
Graph.getEdges(Node node1,
Node node2,
int type) |
Gets the edges adjacent to node1 and node 2 and from the given type.
|
EdgeIterable |
SpatialIndex.getEdgesInArea(Rect2D rect) |
|
EdgeIterable |
DirectedGraph.getInEdges(Node node) |
Gets the node's incoming edges.
|
EdgeIterable |
DirectedGraph.getInEdges(Node node,
int type) |
Gets the node's incoming edges for the given type.
|
EdgeIterable |
DirectedGraph.getOutEdges(Node node) |
Gets the node's outgoing edges.
|
EdgeIterable |
DirectedGraph.getOutEdges(Node node,
int type) |
Gets the node's incoming edges for the given type.
|
EdgeIterable |
GraphDiff.getRemovedEdges() |
Gets all removed edges.
|
EdgeIterable |
Graph.getSelfLoops() |
Gets all the self-loop edges in the graph.
|