public interface CloseableIterator<T> extends Iterator<T>, Closeable
| Modifier and Type | Method and Description |
|---|---|
void |
closeQuietly()
Unconditionally closes the iterator.
|
forEachRemaining, hasNext, next, removevoid closeQuietly()
Unconditionally closes the iterator.
Equivalent to Closeable.close(), except any exceptions will be ignored.
Copyright © 2018 Calrissian. All rights reserved.