net.cscott.jutil
Class SnapshotIterator<E>
public
class
SnapshotIterator<E>
extends UnmodifiableIterator<E>
A
SnapshotIterator takes a "snapshot" of an iterator,
and iterates over that snapshot. So subsequent modifications to
the collection underlying the original iterator do not modify the
snapshot or the
SnapshotIterator. This is very
useful for modifying collections via a visitor class: we want
to make sure that every element of the original collection is
visited, while still permitting the visitor to make changes to
the collection as it operates.
Version: $Id: SnapshotIterator.java,v 1.3 2006-10-30 19:58:07 cananian Exp $
Author: C. Scott Ananian
public SnapshotIterator(Iterator<
E> it)
public boolean hasNext()
Copyright (c) 2006 C. Scott Ananian