apoc.util.collection.NestingResourceIterator 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;
import org.neo4j.graphdb.ResourceIterator;
public abstract class NestingResourceIterator extends PrefetchingResourceIterator
{
private final Iterator source;
private ResourceIterator currentNestedIterator;
protected NestingResourceIterator(Iterator source) {
this.source = source;
}
protected abstract ResourceIterator createNestedIterator(U item);
@Override
protected T fetchNextOrNull() {
if (currentNestedIterator == null || !currentNestedIterator.hasNext()) {
while (source.hasNext()) {
U currentSurfaceItem = source.next();
close();
currentNestedIterator = createNestedIterator(currentSurfaceItem);
if (currentNestedIterator.hasNext()) {
break;
}
}
}
return currentNestedIterator != null && currentNestedIterator.hasNext() ? currentNestedIterator.next() : null;
}
@Override
public void close() {
if (currentNestedIterator != null) {
currentNestedIterator.close();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy