java.lang.Object
org.apache.jena.sparql.resultset.ResultSetWrapper
- All Implemented Interfaces:
Iterator<QuerySolution>
,ResultSet
- Direct Known Subclasses:
ResultSetOnClose
Wrap another
ResultSet
(probably to modify operations on it).-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
void
forEachRemaining
(Consumer<? super QuerySolution> action) org.apache.jena.rdf.model.Model
Get the model that resources are created against - may be nullGet the variable names for the projection.int
Return the "row" number for the current iterator itemboolean
hasNext()
Is there another result?next()
Moves onto the next result.Move to the next binding (low level)Moves onto the next result (legacy - use .next()).Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.jena.query.ResultSet
materialise, rewindable
-
Constructor Details
-
ResultSetWrapper
-
-
Method Details
-
hasNext
public boolean hasNext()Description copied from interface:ResultSet
Is there another result?- Specified by:
hasNext
in interfaceIterator<QuerySolution>
- Specified by:
hasNext
in interfaceResultSet
-
next
Description copied from interface:ResultSet
Moves onto the next result.- Specified by:
next
in interfaceIterator<QuerySolution>
- Specified by:
next
in interfaceResultSet
-
forEachRemaining
- Specified by:
forEachRemaining
in interfaceIterator<QuerySolution>
- Specified by:
forEachRemaining
in interfaceResultSet
-
nextSolution
Description copied from interface:ResultSet
Moves onto the next result (legacy - use .next()).- Specified by:
nextSolution
in interfaceResultSet
-
nextBinding
Description copied from interface:ResultSet
Move to the next binding (low level)- Specified by:
nextBinding
in interfaceResultSet
-
close
public void close() -
getRowNumber
public int getRowNumber()Description copied from interface:ResultSet
Return the "row" number for the current iterator item- Specified by:
getRowNumber
in interfaceResultSet
-
getResultVars
Description copied from interface:ResultSet
Get the variable names for the projection. Not all query solutions from a result have every variable defined.- Specified by:
getResultVars
in interfaceResultSet
-
getResourceModel
public org.apache.jena.rdf.model.Model getResourceModel()Description copied from interface:ResultSet
Get the model that resources are created against - may be null- Specified by:
getResourceModel
in interfaceResultSet
-