Class CollectionIteration<E>
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<E>
org.eclipse.rdf4j.repository.sparql.federation.CollectionIteration<E>
- All Implemented Interfaces:
AutoCloseable, Iterator<E>, CloseableIteration<E>
An iteration to access a materialized
Collection of BindingSets.- Author:
- Andreas Schwarte
-
Field Summary
FieldsFields inherited from interface CloseableIteration
EMPTY_STATEMENT_ITERATION -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidCalled byAbstractCloseableIteration.close()when it is called for the first time.booleanhasNext()next()voidremove()Methods inherited from class AbstractCloseableIteration
close, isClosedModifier and TypeMethodDescriptionfinal voidclose()CallsAbstractCloseableIteration.handleClose()upon first call and makes sure the resource closures are only executed once.final booleanisClosed()Checks whether this CloseableIteration has been closed.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface CloseableIteration
streamMethods inherited from interface Iterator
forEachRemaining
-
Field Details
-
collection
-
iterator
-
-
Constructor Details
-
CollectionIteration
- Parameters:
collection-
-
-
Method Details
-
hasNext
public boolean hasNext() -
next
-
remove
public void remove() -
handleClose
protected void handleClose()Description copied from class:AbstractCloseableIterationCalled byAbstractCloseableIteration.close()when it is called for the first time. This method is only called once on each iteration. By default, this method does nothing.- Specified by:
handleClosein classAbstractCloseableIteration<E>
-