Class LimitIteration<E>
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<E>
org.eclipse.rdf4j.common.iteration.IterationWrapper<E>
org.eclipse.rdf4j.common.iteration.LimitIteration<E>
- All Implemented Interfaces:
 AutoCloseable, Iterator<E>, CloseableIteration<E>
An Iteration that limits the amount of elements that it returns from an underlying Iteration to a fixed amount. This
class returns the first limit elements from the underlying Iteration and drops the rest.
- 
Field Summary
Fields inherited from class IterationWrapper
wrappedIterFields inherited from interface CloseableIteration
EMPTY_STATEMENT_ITERATION - 
Constructor Summary
ConstructorsConstructorDescriptionLimitIteration(CloseableIteration<? extends E> iter, long limit) Creates a new LimitIteration. - 
Method Summary
Methods inherited from class IterationWrapper
handleClose, removeMethods inherited from class AbstractCloseableIteration
close, isClosedMethods 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 
- 
Constructor Details
- 
LimitIteration
Creates a new LimitIteration.- Parameters:
 iter- The underlying Iteration, must not be null.limit- The number of query answers to return, must be >= 0.
 
 - 
 - 
Method Details
- 
hasNext
public boolean hasNext()Description copied from class:IterationWrapperChecks whether the wrapped Iteration contains more elements, closing this Iteration when this is not the case. - 
next
Description copied from class:IterationWrapperReturns the next element from the wrapped Iteration. 
 -