|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ResultSet | |
|---|---|
| arq.cmdline | |
| com.hp.hpl.jena.query | ARQ - A query engine for Jena, implementing SPARQL. |
| com.hp.hpl.jena.sparql.resultset | |
| Uses of ResultSet in arq.cmdline |
|---|
| Methods in arq.cmdline that return ResultSet | |
|---|---|
ResultSet |
ModResultsIn.getResultSet()
|
| Methods in arq.cmdline with parameters of type ResultSet | |
|---|---|
void |
ModResultsOut.printResultSet(ResultSet resultSet,
com.hp.hpl.jena.sparql.core.Prologue prologue)
|
| Uses of ResultSet in com.hp.hpl.jena.query |
|---|
| Methods in com.hp.hpl.jena.query that return ResultSet | |
|---|---|
static ResultSet |
ResultSetFactory.create(com.hp.hpl.jena.sparql.engine.QueryIterator queryIterator,
java.util.List<java.lang.String> vars)
Build a result set from one of ARQ's lower level query iterator. |
ResultSet |
QueryExecution.execSelect()
Execute a SELECT query |
static ResultSet |
ResultSetFactory.fromJSON(java.io.InputStream in)
Read from an input stream which is the format of the SPARQL result set format in JSON. |
static ResultSet |
ResultSetFactory.fromRDF(com.hp.hpl.jena.rdf.model.Model model)
Turns an RDF model, with properties and classses from the result set vocabulary, into a SPARQL result set. |
static ResultSet |
ResultSetFactory.fromSSE(java.io.InputStream in)
Read from an input stream which is the format of the SPARQL result set format in SSE. |
static ResultSet |
ResultSetFactory.fromXML(java.io.InputStream in)
Read XML which is the format of the SPARQL result set format. |
static ResultSet |
ResultSetFactory.fromXML(java.lang.String str)
Read XML which is the format of the SPARQL result set format. |
static ResultSet |
ResultSetFactory.load(java.io.InputStream input,
com.hp.hpl.jena.sparql.resultset.ResultSetFormat format)
Load a result set from input stream into a result set (memory backed). |
static ResultSet |
ResultSetFactory.load(java.lang.String filenameOrURI)
Load a result set from file or URL into a result set (memory backed). |
static ResultSet |
ResultSetFactory.load(java.lang.String filenameOrURI,
com.hp.hpl.jena.sparql.resultset.ResultSetFormat format)
Load a result set from file or URL into a result set (memory backed). |
static ResultSet |
ResultSetFactory.makeResults(com.hp.hpl.jena.rdf.model.Model model)
Turns an RDF model, with properties and classses from the result set vocabulary, into a SPARQL result set. |
static ResultSet |
ResultSetFactory.makeSorted(ResultSet resultSet,
java.util.List<SortCondition> conditions)
Sort an existing result set. |
| Methods in com.hp.hpl.jena.query with parameters of type ResultSet | |
|---|---|
static com.hp.hpl.jena.rdf.model.Resource |
ResultSetFormatter.asRDF(com.hp.hpl.jena.rdf.model.Model model,
ResultSet resultSet)
Encode the result set as RDF in the model provided. |
static java.lang.String |
ResultSetFormatter.asText(ResultSet qresults)
Return a string that has the result set serilized as a text table |
static java.lang.String |
ResultSetFormatter.asText(ResultSet qresults,
com.hp.hpl.jena.sparql.core.Prologue prologue)
Return a string that has the result set serilized as a text table |
static java.lang.String |
ResultSetFormatter.asXMLString(ResultSet qresults)
Return a string that has the result set serilized as XML (not RDF) |
static java.lang.String |
ResultSetFormatter.asXMLString(ResultSet qresults,
java.lang.String stylesheet)
Return a string that has the result set serilized as XML (not RDF) with a style sheet directive inserted into the XML. |
static int |
ResultSetFormatter.consume(ResultSet resultSet)
This operation faithfully walks the results but does nothing with them. |
static ResultSetRewindable |
ResultSetFactory.copyResults(ResultSet results)
Take a copy of a result set - the result set returns is an in-memory copy. |
static ResultSetRewindable |
ResultSetFactory.makeRewindable(ResultSet resultSet)
Turn an existing result set into a rewindable one. |
static ResultSet |
ResultSetFactory.makeSorted(ResultSet resultSet,
java.util.List<SortCondition> conditions)
Sort an existing result set. |
static void |
ResultSetFormatter.out(java.io.OutputStream out,
ResultSet qresults)
Output a result set in a text format. |
static void |
ResultSetFormatter.out(java.io.OutputStream out,
ResultSet qresults,
com.hp.hpl.jena.shared.PrefixMapping pmap)
Output a result set in a text format. |
static void |
ResultSetFormatter.out(java.io.OutputStream out,
ResultSet qresults,
com.hp.hpl.jena.sparql.core.Prologue prologue)
Output a result set in a text format. |
static void |
ResultSetFormatter.out(ResultSet qresults)
Output a result set in a text format. |
static void |
ResultSetFormatter.out(ResultSet qresults,
com.hp.hpl.jena.shared.PrefixMapping pmap)
Output a result set in a text format. |
static void |
ResultSetFormatter.out(ResultSet qresults,
com.hp.hpl.jena.sparql.core.Prologue prologue)
Output a result set in a text format. |
static void |
ResultSetFormatter.out(ResultSet qresults,
Query query)
Output a result set in a text format. |
static void |
ResultSetFormatter.output(java.io.OutputStream outStream,
ResultSet resultSet,
com.hp.hpl.jena.sparql.resultset.ResultSetFormat rFmt)
Output a ResultSet in some format. |
static void |
ResultSetFormatter.output(ResultSet resultSet,
com.hp.hpl.jena.sparql.resultset.ResultSetFormat rFmt)
Output a ResultSet in some format. |
static void |
ResultSetFormatter.outputAsCSV(java.io.OutputStream outStream,
ResultSet resultSet)
Output a result set in CSV format |
static void |
ResultSetFormatter.outputAsCSV(ResultSet resultSet)
Output a result set in CSV format |
static void |
ResultSetFormatter.outputAsJSON(java.io.OutputStream outStream,
ResultSet resultSet)
Output a result set in the JSON format Format: Serializing SPARQL Query Results in JSON JSON: http://json.org/ |
static void |
ResultSetFormatter.outputAsJSON(ResultSet resultSet)
Output a result set in the JSON format Format: Serializing SPARQL Query Results in JSON JSON: http://json.org/ |
static void |
ResultSetFormatter.outputAsRDF(java.io.OutputStream outStream,
java.lang.String format,
ResultSet resultSet)
Write out an RDF model that encodes the result set |
static void |
ResultSetFormatter.outputAsRDF(java.lang.String format,
ResultSet resultSet)
Write out an RDF model that encodes the result set |
static void |
ResultSetFormatter.outputAsSSE(java.io.OutputStream outStream,
ResultSet resultSet)
Output a result set in the SSE format Format: SSE |
static void |
ResultSetFormatter.outputAsSSE(java.io.OutputStream outStream,
ResultSet resultSet,
com.hp.hpl.jena.sparql.core.Prologue prologue)
Output a result set in the SSE format Format: SSE |
static void |
ResultSetFormatter.outputAsSSE(ResultSet resultSet)
Output a result set in the SSE format Format: SSE |
static void |
ResultSetFormatter.outputAsSSE(ResultSet resultSet,
com.hp.hpl.jena.sparql.core.Prologue prologue)
Output a result set in the SSE format Format: SSE |
static void |
ResultSetFormatter.outputAsTSV(java.io.OutputStream outStream,
ResultSet resultSet)
Output a result set in TSV format |
static void |
ResultSetFormatter.outputAsTSV(ResultSet resultSet)
Output a result set in TSV format |
static void |
ResultSetFormatter.outputAsXML(java.io.OutputStream outStream,
ResultSet qresults)
Output a result set in the XML format |
static void |
ResultSetFormatter.outputAsXML(java.io.OutputStream outStream,
ResultSet qresults,
java.lang.String stylesheet)
Output a result set in the XML format, inserting a style sheet in the XMl output |
static void |
ResultSetFormatter.outputAsXML(ResultSet qresults)
Output a result set in the XML format |
static void |
ResultSetFormatter.outputAsXML(ResultSet qresults,
java.lang.String stylesheet)
Output a result set in the XML format, inserting a style sheet in the XMl output |
static java.util.List<QuerySolution> |
ResultSetFormatter.toList(ResultSet resultSet)
Turn the result set into a java.util.List |
static com.hp.hpl.jena.rdf.model.Model |
ResultSetFormatter.toModel(ResultSet resultSet)
Encode the result set as RDF. |
| Uses of ResultSet in com.hp.hpl.jena.sparql.resultset |
|---|
| Subinterfaces of ResultSet in com.hp.hpl.jena.sparql.resultset | |
|---|---|
interface |
com.hp.hpl.jena.sparql.resultset.ResultSetRewindable
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||