Package org.apache.jena.rdf.model
Interface RSIterator
-
- All Superinterfaces:
ClosableIterator<ReifiedStatement>
,Closeable
,ExtendedIterator<ReifiedStatement>
,java.util.Iterator<ReifiedStatement>
,IteratorCloseable<ReifiedStatement>
- All Known Implementing Classes:
RSIteratorImpl
public interface RSIterator extends ExtendedIterator<ReifiedStatement>
An RSIterator is a ClosableIterator (qv) which delivers only ReifedStatement's and which has a next-method with that return type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReifiedStatement
nextRS()
return the next object, cast to a ReifedStatement-
Methods inherited from interface org.apache.jena.util.iterator.ClosableIterator
close
-
Methods inherited from interface org.apache.jena.util.iterator.ExtendedIterator
andThen, filterDrop, filterKeep, forEach, mapWith, nextOptional, removeNext, toList, toSet
-
-
-
-
Method Detail
-
nextRS
ReifiedStatement nextRS()
return the next object, cast to a ReifedStatement
-
-