com.hp.hpl.jena.sparql.resultset
Interface ResultSetProcessor

All Known Implementing Classes:
JSONOutputResultSet, PlainFormat, XMLOutputResultSet

public interface ResultSetProcessor


Method Summary
 void binding(String varName, com.hp.hpl.jena.rdf.model.RDFNode value)
          A single (variable, value) pair in a query solution - the value may be null indicating that the variable was not present in this solution.
 void finish(QuerySolution qs)
          Finish query solution (row in result set)
 void finish(ResultSet rs)
          Finish result set
 void start(QuerySolution qs)
          Start query solution (row in result set)
 void start(ResultSet rs)
          Start result set
 

Method Detail

start

void start(ResultSet rs)
Start result set


finish

void finish(ResultSet rs)
Finish result set


start

void start(QuerySolution qs)
Start query solution (row in result set)


finish

void finish(QuerySolution qs)
Finish query solution (row in result set)


binding

void binding(String varName,
             com.hp.hpl.jena.rdf.model.RDFNode value)
A single (variable, value) pair in a query solution - the value may be null indicating that the variable was not present in this solution.

Parameters:
varName -
value -


Licenced under the Apache License, Version 2.0