apoc.util.collection.WrappingResourceIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc-common Show documentation
Show all versions of apoc-common Show documentation
Data types package for Neo4j Procedures
package apoc.util.collection;
import java.util.Iterator;
class WrappingResourceIterator extends PrefetchingResourceIterator
{
private final Iterator iterator;
WrappingResourceIterator(Iterator iterator) {
this.iterator = iterator;
}
@Override
public void close() {
// nothing to release
}
@Override
public void remove() {
iterator.remove();
}
@Override
protected T fetchNextOrNull() {
return iterator.hasNext() ? iterator.next() : null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy