Class AbstractIteratorDecorator
java.lang.Object
org.apache.commons.collections.iterators.AbstractIteratorDecorator
- All Implemented Interfaces:
Iterator
- Direct Known Subclasses:
AbstractDualBidiMap.EntrySetIterator
,AbstractDualBidiMap.KeySetIterator
,AbstractDualBidiMap.ValuesIterator
Provides basic behaviour for decorating an iterator with extra functionality.
All methods are forwarded to the decorated iterator.
- Since:
- Commons Collections 3.0
- Version:
- $Revision: 646777 $ $Date: 2008-04-10 14:33:15 +0200 (Thu, 10 Apr 2008) $
- Author:
- James Strachan, Stephen Colebourne
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionAbstractIteratorDecorator
(Iterator iterator) Constructor that decorates the specified iterator. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Field Details
-
iterator
The iterator being decorated
-
-
Constructor Details
-
AbstractIteratorDecorator
Constructor that decorates the specified iterator.- Parameters:
iterator
- the iterator to decorate, must not be null- Throws:
IllegalArgumentException
- if the collection is null
-
-
Method Details