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

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

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

Methods in de.aitools.aq.structure.graph that return UndirectedIntGraph.Edge
 UndirectedIntGraph.Edge UndirectedIntGraph.Edge.clone()
          Clones this edge.
 UndirectedIntGraph.Edge UndirectedIntGraph.getEdge(int vertexA, int vertexB)
          Returns the Edge connecting the two vertices.
 UndirectedIntGraph.Edge UndirectedIntHashGraph.getEdge(int vertexA, int vertexB)
           
 

Methods in de.aitools.aq.structure.graph that return types with arguments of type UndirectedIntGraph.Edge
 java.util.Iterator<? extends UndirectedIntGraph.Edge> UndirectedIntGraph.getEdges()
          Returns an iterator over all edges of the graph.
 java.util.Iterator<? extends UndirectedIntGraph.Edge> UndirectedIntHashGraph.getEdges()
           
 java.util.Iterator<? extends UndirectedIntGraph.Edge> UndirectedIntGraph.getEdgesConnectedTo(int vertex)
          Returns an iterator over all edges in the graph to which given vertex is connected to.
 java.util.Iterator<? extends UndirectedIntGraph.Edge> UndirectedIntHashGraph.getEdgesConnectedTo(int vertex)