java.lang.Object
org.apache.jena.sparql.engine.ResultSetCheckCondition
- All Implemented Interfaces:
Iterator<QuerySolution>
,ResultSet
ResultSet wrapper that check whether some condition is true
(e.g. the QueryExecution has not been closed).
-
Constructor Summary
ConstructorsConstructorDescriptionResultSetCheckCondition
(ResultSet other, QueryExecution qExec) ResultSetCheckCondition
(ResultSet other, org.apache.jena.sparql.engine.ResultSetCheckCondition.Condition condition) -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
void
forEachRemaining
(Consumer<? super QuerySolution> action) Attention: The check is only done once before the first consumer accept call.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
-
ResultSetCheckCondition
-
ResultSetCheckCondition
public ResultSetCheckCondition(ResultSet other, org.apache.jena.sparql.engine.ResultSetCheckCondition.Condition condition)
-
-
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
-
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() -
forEachRemaining
Attention: The check is only done once before the first consumer accept call.- Specified by:
forEachRemaining
in interfaceIterator<QuerySolution>
- Specified by:
forEachRemaining
in interfaceResultSet
- Parameters:
action
- The action to be performed for each element
-
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
Description copied from interface:ResultSet
Get the model that resources are created against - may be null- Specified by:
getResourceModel
in interfaceResultSet
-