public class FilteredEdgeIterator extends FilteredIterator
Iterator
. Because this class
must advance the underlying Iterator
to function
properly, implementing remove(java.lang.Object)
may delegate to Graph.removeEdge( edge )
in some situations.Constructor and Description |
---|
FilteredEdgeIterator(Graph graph,
Iterator edgeIter,
org.apache.commons.collections.Predicate edgePredicate)
Creates a new
FilteredEdgeIterator which will
have FilteredIterator.remove() delegate to Graph.removeEdge( edge ) if necessary. |
FilteredEdgeIterator(Iterator edgeIter,
org.apache.commons.collections.Predicate edgePredicate)
Creates a new
FilteredEdgeIterator which will
throw an IllegalStateException if
remove() is called after hasNext()
without an intervening call to next() . |
Modifier and Type | Method and Description |
---|---|
protected void |
remove(Object object)
If the
Graph specified in the constructor is not
null , this implementation will delegate to Graph.removeEdge( edge ) (which may
invalidate this Iterator ). |
hasNext, next, remove
public FilteredEdgeIterator(Iterator edgeIter, org.apache.commons.collections.Predicate edgePredicate)
FilteredEdgeIterator
which will
throw an IllegalStateException
if
remove()
is called after hasNext()
without an intervening call to next()
.public FilteredEdgeIterator(Graph graph, Iterator edgeIter, org.apache.commons.collections.Predicate edgePredicate)
FilteredEdgeIterator
which will
have FilteredIterator.remove()
delegate to Graph.removeEdge( edge )
if necessary. Depending upon the
Graph
implementation, this may invalidate this
Iterator
.protected void remove(Object object)
Graph
specified in the constructor is not
null
, this implementation will delegate to Graph.removeEdge( edge )
(which may
invalidate this Iterator
). If the
Graph
specified in the constructor is
null
, or if the other constructor is used, this
implementation throws an IllegalStateException
.
Description copied from class: FilteredIterator
This method is called by FilteredIterator.remove()
if
hasNext()
was called after the last calls to both
next()
and remove()
(if any) and
remove()
has not been called after the last call
to next()
. In other words, this method is called
if the call sequence goes something like next(),
hasNext(), remove()
, which means the underlying
Iterator
has been advanced beyond the element to
be removed. This provides an extension point for an
implementation to correctly handle this case if it is capable
of doing so.
This implementation throws an
IllegalStateException
.
remove
in class FilteredIterator
See the Plexus project home, hosted by SourceForge.
Copyright ? 1994-2006, by Phoenix Software Technologists, Inc. and others. All Rights Reserved. Use is subject to license terms.