Uses of Interface
graph.Edge
Packages that use Edge
-
Uses of Edge in algs
Modifier and TypeMethodDescriptionDijkstra.getPathEdges(Vertex f) Get the edges on the shortest path from vertex s to vertex f.DijkstraDirected.getPathEdges(Vertex f) Get the edges on the shortest path from vertex s to vertex f. -
Uses of Edge in directedgraph
Classes in directedgraph that implement EdgeModifier and TypeClassDescriptionclassclassclassMethods in directedgraph that return EdgeModifier and TypeMethodDescriptionAdjacencyListDirectedGraph.insertDirectedEdge(Vertex v, Vertex w, Object obj) AdjacencyMatrixDirectedGraph.insertDirectedEdge(Vertex v, Vertex w, Object obj) DirectedGraph.insertDirectedEdge(Vertex v, Vertex w, Object obj) Methods in directedgraph that return types with arguments of type EdgeModifier and TypeMethodDescriptionAbstractDirectedGraph.edges()DirectedGraph.edges()AdjacencyListDirectedGraph.inIncidentEdges(Vertex v) AdjacencyMatrixDirectedGraph.inIncidentEdges(Vertex v) DirectedGraph.inIncidentEdges(Vertex v) AdjacencyListDirectedGraph.outIncidentEdges(Vertex v) AdjacencyMatrixDirectedGraph.outIncidentEdges(Vertex v) DirectedGraph.outIncidentEdges(Vertex v) Methods in directedgraph with parameters of type EdgeModifier and TypeMethodDescriptionAbstractDirectedGraph.destination(Edge e) DirectedGraph.destination(Edge e) Vertex[]AbstractDirectedGraph.endVertices(Edge e) Vertex[]DirectedGraph.endVertices(Edge e) voidAdjacencyListDirectedGraph.makeUndirected(Edge e) voidAdjacencyMatrixDirectedGraph.makeUndirected(Edge e) voidDirectedGraph.makeUndirected(Edge e) voidAdjacencyListDirectedGraph.removeEdge(Edge e) voidAdjacencyMatrixDirectedGraph.removeEdge(Edge e) voidDirectedGraph.removeEdge(Edge e) voidAdjacencyListDirectedGraph.reverseDirection(Edge e) voidAdjacencyMatrixDirectedGraph.reverseDirection(Edge e) voidDirectedGraph.reverseDirection(Edge e) voidAdjacencyListDirectedGraph.setDirectionFrom(Edge e, Vertex v) voidAdjacencyMatrixDirectedGraph.setDirectionFrom(Edge e, Vertex v) voidDirectedGraph.setDirectionFrom(Edge e, Vertex v) voidAdjacencyListDirectedGraph.setDirectionTo(Edge e, Vertex v) voidAdjacencyMatrixDirectedGraph.setDirectionTo(Edge e, Vertex v) voidDirectedGraph.setDirectionTo(Edge e, Vertex v) -
Uses of Edge in graph
Modifier and TypeClassDescriptionclassclassclassModifier and TypeMethodDescriptionAdjacencyListGraph.insertEdge(Vertex v, Vertex w, Object obj) AdjacencyMatrixGraph.insertEdge(Vertex v, Vertex w, Object obj) Graph.insertEdge(Vertex v, Vertex w, Object obj) Modifier and TypeMethodDescriptionAbstractGraph.edges()Graph.edges()AdjacencyListGraph.incidentEdges(Vertex v) AdjacencyMatrixGraph.incidentEdges(Vertex v) Graph.incidentEdges(Vertex v) Modifier and TypeMethodDescriptionVertex[]AbstractGraph.endVertices(Edge e) Vertex[]Graph.endVertices(Edge e) voidAdjacencyListGraph.removeEdge(Edge e) voidAdjacencyMatrixGraph.removeEdge(Edge e) voidGraph.removeEdge(Edge e)