Uses of Interface
net.walend.digraph.EdgeNodeIterator

Packages that use EdgeNodeIterator
net.walend.digraph This package contains a kit for working with directed graphs. 
net.walend.digraph.path This package contains a kit for working with paths on directed graphs. 
net.walend.digraph.path.test   
net.walend.measured This package contains a kit for working with measured paths on directed graphs. 
 

Uses of EdgeNodeIterator in net.walend.digraph
 

Subinterfaces of EdgeNodeIterator in net.walend.digraph
 interface EdgeIterator
          EdgeIterator extends EdgeNodeIterator by adding a method to get the current edge.
 interface IndexedEdgeIterator
          An EdgeIterator with methods to get indicies.
 interface IndexedEdgeNodeIterator
          An EdgeNodeIterator with methods to get indicies.
 

Classes in net.walend.digraph that implement EdgeNodeIterator
protected  class AbstractHashCEDigraph.HashEdgeIterator
           
protected  class AbstractHashGEDigraph.HashEdgeIterator
           
protected  class AbstractHashUEDigraph.HashEdgeIterator
           
protected  class AbstractLMCEDigraph.LMEdgeIterator
           
protected  class AbstractLMGEDigraph.LMEdgeNodeIterator
           
protected  class AbstractMatrixCEDigraph.MatrixEdgeIterator
           
protected  class AbstractMatrixGEDigraph.MatrixEdgeIterator
           
protected  class AbstractMatrixUEDigraph.MatrixEdgeIterator
           
 class ImmutableEdgeIterator
          This class is an EdgeIterator for Immutables.
 class ImmutableEdgeNodeIterator
          This class is an EdgeIterator for Immutables.
 

Fields in net.walend.digraph declared as EdgeNodeIterator
private  EdgeNodeIterator ImmutableEdgeNodeIterator.it
           
 

Methods in net.walend.digraph that return EdgeNodeIterator
 EdgeNodeIterator AbstractHashGEDigraph.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator AbstractMatrixCEDigraph.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator Digraph.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator AbstractMatrixUEDigraph.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator HashGEDigraph.edgeNodeIterator()
          Since HashGEDigraph is immutable, edgeIterator()'s remove() method throws an UnsupportedOperationException.
 EdgeNodeIterator AbstractHashCEDigraph.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator AbstractHashUEDigraph.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator MatrixGEDigraph.edgeNodeIterator()
          Since HashGEDigraph is immutable, edgeIterator()'s remove() method throws an UnsupportedOperationException.
 EdgeNodeIterator AbstractMatrixGEDigraph.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator LMGEDigraph.edgeNodeIterator()
          Since HashGEDigraph is immutable, edgeIterator()'s remove() method throws an UnsupportedOperationException.
 

Constructors in net.walend.digraph with parameters of type EdgeNodeIterator
ImmutableEdgeNodeIterator(EdgeNodeIterator it)
           
 

Uses of EdgeNodeIterator in net.walend.digraph.path
 

Classes in net.walend.digraph.path that implement EdgeNodeIterator
protected  class AbstractDelegateDigraphOfCEPaths.ADDOCEPIndexedEdgeIterator
           
protected  class AbstractDelegateDigraphOfCEPaths.DigraphCEPath.PathEdgeIterator
           
protected  class AbstractDelegateDigraphOfGEPaths.ADDOCEPIndexedEdgeIterator
           
protected  class AbstractDelegateDigraphOfGEPaths.DigraphGEPath.PathEdgeNodeIterator
           
protected  class AbstractListCEPath.ListEdgeIterator
           
protected  class AbstractListGEPath.ListEdgeNodeIterator
           
protected  class AbstractListUEPath.ListEdgeIterator
           
 

Methods in net.walend.digraph.path that return EdgeNodeIterator
 EdgeNodeIterator AbstractDelegateDigraphOfCEPaths.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator AbstractDelegateDigraphOfCEPaths.DigraphCEPath.pathEdgeNodeIterator()
          Iterate through the edges in path order.
 EdgeNodeIterator AbstractDelegateDigraphOfCEPaths.DigraphCEPath.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator AbstractDelegateDigraphOfGEPaths.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator AbstractDelegateDigraphOfGEPaths.DigraphGEPath.pathEdgeNodeIterator()
          Iterate through the edges in path order.
 EdgeNodeIterator AbstractDelegateDigraphOfGEPaths.DigraphGEPath.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator AbstractListCEPath.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator AbstractListCEPath.pathEdgeNodeIterator()
           
 EdgeNodeIterator Path.pathEdgeNodeIterator()
          Iterate through the edges in path order.
 EdgeNodeIterator AbstractListGEPath.pathEdgeNodeIterator()
          Since ListGEPath is immutable, edgeIterator()'s remove() method throws an UnsupportedOperationException.
 EdgeNodeIterator AbstractListGEPath.edgeNodeIterator()
           
 EdgeNodeIterator AbstractListUEPath.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator AbstractListUEPath.pathEdgeNodeIterator()
           
 

Uses of EdgeNodeIterator in net.walend.digraph.path.test
 

Methods in net.walend.digraph.path.test with parameters of type EdgeNodeIterator
 void MutableGEPathTest.testConcurrentModificationException(EdgeNodeIterator it, boolean exception)
           
 

Uses of EdgeNodeIterator in net.walend.measured
 

Classes in net.walend.measured that implement EdgeNodeIterator
private  class CEBellmanFordTest.BFCEDigraph.WrappingEdgeIterator
           
private  class GEBellmanFordTest.BFGEDigraph.WrappingEdgeNodeIterator
           
 

Methods in net.walend.measured that return EdgeNodeIterator
 EdgeNodeIterator GEBellmanFordTest.BFGEDigraph.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 EdgeNodeIterator CEBellmanFordTest.BFCEDigraph.edgeNodeIterator()
          Returns an iterator that iterates across pairs of nodes that make edges.
 



Copyright (c) 2001, 2002, David Walend