Uses of Class
org.jboss.util.graph.Edge
-
Packages that use Edge Package Description org.jboss.util.graph -
-
Uses of Edge in org.jboss.util.graph
Fields in org.jboss.util.graph with type parameters of type Edge Modifier and Type Field Description private java.util.List<Edge<T>>
Graph. edges
Vectorof edges in the graph private java.util.List<Edge<T>>
Vertex. incomingEdges
private java.util.List<Edge<T>>
Vertex. outgoingEdges
Methods in org.jboss.util.graph that return Edge Modifier and Type Method Description 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 edgeEdge<T>
Vertex. getOutgoingEdge(int i)
Get the ith outgoing edgeMethods in org.jboss.util.graph that return types with arguments of type Edge Modifier and Type Method Description java.util.List<Edge<T>>
Graph. getEdges()
Get the graph edgesMethods in org.jboss.util.graph with parameters of type Edge Modifier and Type Method Description 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 vertexvoid
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.Method parameters in org.jboss.util.graph with type arguments of type Edge Modifier and Type Method Description private void
Graph. visit(Vertex<T> v, java.util.ArrayList<Edge<T>> cycleEdges)
-