Class OffsetIteration<E,X extends java.lang.Exception>
- java.lang.Object
-
- org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<E,X>
-
- org.eclipse.rdf4j.common.iteration.IterationWrapper<E,X>
-
- org.eclipse.rdf4j.common.iteration.FilterIteration<E,X>
-
- org.eclipse.rdf4j.common.iteration.OffsetIteration<E,X>
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,CloseableIteration<E,X>
,Iteration<E,X>
@Deprecated(since="4.1.0") public class OffsetIteration<E,X extends java.lang.Exception> extends FilterIteration<E,X>
Deprecated.An Iteration that skips the first offset elements from an underlying Iteration.
-
-
Field Summary
Fields Modifier and Type Field Description private long
droppedResults
Deprecated.The number of elements that have been dropped so far.private long
offset
Deprecated.The offset (0-based) of the first element to return.-
Fields inherited from class org.eclipse.rdf4j.common.iteration.IterationWrapper
wrappedIter
-
-
Constructor Summary
Constructors Constructor Description OffsetIteration(Iteration<? extends E,X> iter, long offset)
Deprecated.Creates a new OffsetIteration.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected boolean
accept(E object)
Deprecated.Returns false for the first OFFSET objects.-
Methods inherited from class org.eclipse.rdf4j.common.iteration.FilterIteration
handleClose, hasNext, next
-
Methods inherited from class org.eclipse.rdf4j.common.iteration.IterationWrapper
remove
-
Methods inherited from class org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration
close, isClosed
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.rdf4j.common.iteration.CloseableIteration
stream
-
-
-
-
Method Detail
-
accept
protected boolean accept(E object)
Deprecated.Returns false for the first OFFSET objects.- Specified by:
accept
in classFilterIteration<E,X extends java.lang.Exception>
- Parameters:
object
- The object to be tested.- Returns:
- true if the object should be returned, false otherwise.
-
-