public abstract class AbstractObjectStream<T> extends Object implements ObjectStream<T>
Base class to make ObjectStream
s easier to implement.
Constructor and Description |
---|
AbstractObjectStream() |
Modifier and Type | Method and Description |
---|---|
void |
close()
No-op implementation of the
ObjectStream.close() method. |
Iterator<T> |
iterator()
Get the iterator.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
readObject
forEach, spliterator
public void close()
No-op implementation of the ObjectStream.close()
method.
close
in interface Closeable
close
in interface AutoCloseable
close
in interface ObjectStream<T>