Uses of Interface
de.aitools.aq.structure.graph.UndirectedGraph.Edge

Packages that use UndirectedGraph.Edge
de.aitools.aq.structure.graph   
 

Uses of UndirectedGraph.Edge in de.aitools.aq.structure.graph
 

Methods in de.aitools.aq.structure.graph that return UndirectedGraph.Edge
 UndirectedGraph.Edge<V> UndirectedGraph.Edge.clone()
          Clones this edge.
 UndirectedGraph.Edge<V> UndirectedGraph.getEdge(V vertexA, V vertexB)
          Returns the Edge connecting the two vertices.
 UndirectedGraph.Edge<V> UndirectedHashGraph.getEdge(V vertexA, V vertexB)
           
 

Methods in de.aitools.aq.structure.graph that return types with arguments of type UndirectedGraph.Edge
 java.util.Iterator<? extends UndirectedGraph.Edge<V>> UndirectedGraph.getEdges()
          Returns an iterator over all edges of the graph.
 java.util.Iterator<? extends UndirectedGraph.Edge<V>> UndirectedHashGraph.getEdges()
           
 java.util.Iterator<? extends UndirectedGraph.Edge<V>> UndirectedGraph.getEdgesConnectedTo(V vertex)
          Returns an iterator over all edges in the graph that are connected to given vertex
 java.util.Iterator<? extends UndirectedGraph.Edge<V>> UndirectedHashGraph.getEdgesConnectedTo(V vertex)
           
 java.util.Set<UndirectedGraph.Edge<V>> UndirectedHashGraph.getSetOfEdges()
           
 java.util.Set<UndirectedGraph.Edge<V>> UndirectedHashGraph.getSetOfEdgesConnectedTo(V vertex)