Package org.eclipse.rdf4j.model.util
Class PatternIterator<S extends Statement>
- java.lang.Object
-
- org.eclipse.rdf4j.model.util.PatternIterator<S>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
accept(S st)
Tests whether or not the specified statement should be returned by this iterator.boolean
hasNext()
S
next()
void
remove()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
accept
protected boolean accept(S st)
Tests whether or not the specified statement should be returned by this iterator. All objects from the wrapped iterator pass through this method in the same order as they are coming from the wrapped iterator.- Parameters:
st
- The statement to be tested.- Returns:
- true if the object should be returned, false otherwise.
-
-