java.lang.Object
org.refcodes.io.SerializableIterator<T>
- Type Parameters:
T- The type of the instances managed by theIterator.
- All Implemented Interfaces:
Serializable,Iterator<T>
public class SerializableIterator<T> extends Object implements Iterator<T>, Serializable
Makes the wrapped
Iterator serializable, else passing
Iterator instances would cause an NotSerializableException or
similar.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description SerializableIterator()Instantiates a new serializable iterator impl.SerializableIterator(Iterator<T> aIterator)Instantiates a new serializable iterator impl. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
SerializableIterator
public SerializableIterator()Instantiates a new serializable iterator impl. -
SerializableIterator
Instantiates a new serializable iterator impl.- Parameters:
aIterator- the iterator
-
-
Method Details