|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Edge | |
|---|---|
| org.jboss.util.graph | |
| Uses of Edge in org.jboss.util.graph |
|---|
| Methods in org.jboss.util.graph that return Edge | |
|---|---|
Edge<T>[] |
Graph.findCycles()
Search the graph for cycles. |
Edge<T> |
Vertex.findEdge(Edge<T> e)
Search the outgoing edges for a match to e. |
Edge<T> |
Vertex.findEdge(Vertex<T> dest)
Search the outgoing edges looking for an edge whose's edge.to == dest. |
Edge<T> |
Vertex.getIncomingEdge(int i)
Get the ith incoming edge |
Edge<T> |
Vertex.getOutgoingEdge(int i)
Get the ith outgoing edge |
| Methods in org.jboss.util.graph that return types with arguments of type Edge | |
|---|---|
List<Edge<T>> |
Graph.getEdges()
Get the graph edges |
| Methods in org.jboss.util.graph with parameters of type Edge | |
|---|---|
boolean |
Vertex.addEdge(Edge<T> e)
Add an edge to the vertex. |
Edge<T> |
Vertex.findEdge(Edge<T> e)
Search the outgoing edges for a match to e. |
boolean |
Vertex.hasEdge(Edge<T> e)
Check the vertex for either an incoming or outgoing edge mathcing e. |
boolean |
Vertex.remove(Edge<T> e)
Remove an edge from this vertex |
void |
DFSVisitor.visit(Graph<T> g,
Vertex<T> v,
Edge<T> e)
Used dfsSpanningTree to notify the visitor of each outgoing edge to an unvisited vertex. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||