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

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

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

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

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