Uses of Class
org.apache.openjpa.lib.graph.Edge
-
Packages that use Edge Package Description org.apache.openjpa.lib.graph Graph Abstraction -
-
Uses of Edge in org.apache.openjpa.lib.graph
Methods in org.apache.openjpa.lib.graph that return types with arguments of type Edge Modifier and Type Method Description java.util.List<Edge>
Edge. getCycle()
List of edges forming a cycle.java.util.Collection<Edge>
DepthFirstAnalysis. getEdges(int type)
Return all edges of the given type.java.util.Collection<Edge>
Graph. getEdges()
Return all edges in the graph.java.util.Collection<Edge>
Graph. getEdges(java.lang.Object from, java.lang.Object to)
Return all the edges from one node to another.java.util.Collection<Edge>
Graph. getEdgesFrom(java.lang.Object node)
Return all the edges from a particular node.java.util.Collection<Edge>
Graph. getEdgesTo(java.lang.Object node)
Return all the edges to a particular node.Methods in org.apache.openjpa.lib.graph with parameters of type Edge Modifier and Type Method Description void
Graph. addEdge(Edge edge)
Add an edge to the graph.protected void
BreadthFirstWalk. edgeVisited(Edge edge)
An edge is seen.void
GraphVisitor. edgeVisited(Edge edge)
may visit the node twice (both sides)boolean
Graph. removeEdge(Edge edge)
Remove an edge from the graph.Method parameters in org.apache.openjpa.lib.graph with type arguments of type Edge Modifier and Type Method Description void
Edge. setCycle(java.util.List<Edge> cycle)
List of edges forming a cycle.
-