Uses of Interface
org.apache.jena.sparql.exec.RowSet
Packages that use RowSet
Package
Description
ARQ - A query engine for Jena, implementing SPARQL.
-
Uses of RowSet in org.apache.jena.query
Methods in org.apache.jena.query with parameters of type RowSetModifier and TypeMethodDescriptionstatic ResultSetstatic ResultSetRewindableResultSetFactory.makeRewindable(RowSet rowSet) Turn a row set into a rewindable ResultSet. -
Uses of RowSet in org.apache.jena.riot.protobuf
Methods in org.apache.jena.riot.protobuf that return RowSetModifier and TypeMethodDescriptionstatic RowSetProtobufRDF.readRowSet(InputStream input) Return a streamingRowSetread from an input stream (with delimiters per row)Methods in org.apache.jena.riot.protobuf with parameters of type RowSetModifier and TypeMethodDescriptionstatic voidProtobufRDF.writeRowSet(OutputStream out, RowSet rowSet) Write aRowSetto an output stream (with delimiters per row)static voidProtobufRDF.writeRowSet(OutputStream out, RowSet rowSet, boolean withValues) Write aRowSetto an output stream (with delimiters per row) -
Uses of RowSet in org.apache.jena.riot.rowset
Classes in org.apache.jena.riot.rowset that implement RowSetModifier and TypeClassDescriptionclassPerform an action on a row set when iteration finishes orclose()is called.classMethods in org.apache.jena.riot.rowset that return RowSetModifier and TypeMethodDescriptionRowSetWrapper.get()QueryResults.Builder.read(InputStream input) Short form equivalent to.build().read(InputStreams)Short form equivalent to.build().read(url)QueryResults.read(InputStream input) Read a row set from anInputStream.Read a row set from a URL or filename.default RowSetRowSetReader.read(InputStream in, Context context) Read from anInputStreamand produce aRowSet.default RowSetUsingRowSetReader.read(InputStream, Context)is preferred.Methods in org.apache.jena.riot.rowset with parameters of type RowSetModifier and TypeMethodDescriptionvoidRowSetWriter.write(OutputStream out, RowSet rowSet, Context context) Write the ResultSet to the OutputStreamvoidUsingRowSetWriter.write(OutputStream, RowSet, Context)is preferred.Constructors in org.apache.jena.riot.rowset with parameters of type RowSetModifierConstructorDescriptionRowSetOnClose(RowSet rs, Runnable onClose) RowSetWrapper(RowSet other) -
Uses of RowSet in org.apache.jena.riot.rowset.rw
Methods in org.apache.jena.riot.rowset.rw that return RowSetModifier and TypeMethodDescriptionRowSetReaderCSV.read(InputStream in, Context context) RowSetReaderNone.read(InputStream in, Context context) RowSetReaderProtobuf.read(InputStream in, Context context) RowSetReaderThrift.read(InputStream in, Context context) RowSetReaderTSV.read(InputStream in, Context context) static RowSetRowSetReaderTSV.resultSetFromTSV(InputStream in) Reads SPARQL Results from TSV format into aRowSetinstanceMethods in org.apache.jena.riot.rowset.rw with parameters of type RowSetModifier and TypeMethodDescriptionstatic voidRowSetWriterText.output(org.apache.jena.atlas.io.AWriter out, RowSet resultSet, String colStart, String colSep, String colEnd) static voidRowSetWriterText.output(org.apache.jena.atlas.io.AWriter out, RowSet resultSet, String colStart, String colSep, String colEnd, Context cxt) static voidvoidRowSetWriterCSV.write(OutputStream out, RowSet resultSet, Context context) voidvoidRowSetWriterJSON.write(OutputStream outStream, RowSet rowSet, Context context) voidvoidRowSetWriterNone.write(OutputStream out, RowSet resultSet, Context context) voidvoidRowSetWriterProtobuf.write(OutputStream out, RowSet rowSet, Context context) voidvoidRowSetWriterText.write(OutputStream out, RowSet resultSet, Context context) voidvoidRowSetWriterThrift.write(OutputStream out, RowSet rowSet, Context context) voidvoidRowSetWriterTSV.write(OutputStream out, RowSet rowSet, Context context) voidvoidRowSetWriterXML.write(OutputStream outStream, RowSet rs, Context context) void -
Uses of RowSet in org.apache.jena.riot.rowset.rw.rs_json
Classes in org.apache.jena.riot.rowset.rw.rs_json with type parameters of type RowSetModifier and TypeClassDescriptionclassRowSetBuffered<T extends RowSet>A buffering RowSet wrapper for stream-backed RowSets whoseRowSetBuffered.getResultVars()returns null as long as the header has not been seen on the stream.Classes in org.apache.jena.riot.rowset.rw.rs_json that implement RowSetModifier and TypeClassDescriptionclassRowSetBuffered<T extends RowSet>A buffering RowSet wrapper for stream-backed RowSets whoseRowSetBuffered.getResultVars()returns null as long as the header has not been seen on the stream.classStreaming RowSet implementation for application/sparql-results+json TheRowSetJSONStreaming.getResultVars()will return null as long as the header has not been consumed from the underlying stream. -
Uses of RowSet in org.apache.jena.riot.thrift
Methods in org.apache.jena.riot.thrift that return RowSetModifier and TypeMethodDescriptionstatic RowSetThriftRDF.readRowSet(InputStream in) static RowSetThriftRDF.readRowSet(org.apache.thrift.protocol.TProtocol protocol) Methods in org.apache.jena.riot.thrift with parameters of type RowSetModifier and TypeMethodDescriptionstatic voidThriftRDF.writeRowSet(OutputStream out, RowSet rowSet) static voidThriftRDF.writeRowSet(OutputStream out, RowSet rowSet, boolean withValues) static voidThriftRDF.writeRowSet(org.apache.thrift.protocol.TProtocol protocol, RowSet rowSet) static voidThriftRDF.writeRowSet(org.apache.thrift.protocol.TProtocol protocol, RowSet rowSet, boolean encodeValues) -
Uses of RowSet in org.apache.jena.sparql.algebra
Methods in org.apache.jena.sparql.algebra that return RowSetMethods in org.apache.jena.sparql.algebra with parameters of type RowSet -
Uses of RowSet in org.apache.jena.sparql.algebra.table
Methods in org.apache.jena.sparql.algebra.table that return RowSet -
Uses of RowSet in org.apache.jena.sparql.exec
Subinterfaces of RowSet in org.apache.jena.sparql.execClasses in org.apache.jena.sparql.exec that implement RowSetModifier and TypeClassDescriptionclassclassA row set held in-memory which is rewindable and peekableclassMethods in org.apache.jena.sparql.exec that return RowSetModifier and TypeMethodDescriptionstatic RowSetstatic RowSetRowSet.create(QueryIterator qIter, List<Var> vars) Turn aQueryIteratorinto a RowSet.static RowSetResultSetAdapter.get()default RowSetRowSet.materialize()Return aRowSetthat is not connected to the original source.static RowSetRowSetFactory.read(InputStream in, Lang lang) QueryExecResult.rowSet()QueryExec.select()Execute a SELECT queryQueryExecAdapter.select()QueryExecApp.select()default RowSetQueryExecBuilder.select()Build and execute as a SELECT query.QueryExecDataset.select()Methods in org.apache.jena.sparql.exec with parameters of type RowSetModifier and TypeMethodDescriptionstatic voidThis operation faithfully walks the rowSet but does nothing with the rows.static longCount the rows in the RowSet (from the current point of RowSet).static RowSetRewindablestatic voidRowSetOps.out(OutputStream out, RowSet rowSet) Output a result set in a text format.static voidRowSetOps.out(OutputStream out, RowSet resultSet, PrefixMap pmap) Output a result set in a text format.static voidRowSetOps.out(OutputStream out, RowSet rowSet, Prologue prologue) Output a result set in a text format.static voidOutput a result set in a text format.Constructors in org.apache.jena.sparql.exec with parameters of type RowSetModifierConstructorDescriptionQueryExecResult(RowSet rowSet) ResultSetAdapter(RowSet rowSet) ResultSetAdapter(RowSet rowSet, org.apache.jena.rdf.model.Model m) -
Uses of RowSet in org.apache.jena.sparql.exec.http
Methods in org.apache.jena.sparql.exec.http that return RowSet -
Uses of RowSet in org.apache.jena.sparql.resultset
Methods in org.apache.jena.sparql.resultset that return RowSetModifier and TypeMethodDescriptionResultsReader.Builder.readRowSet(InputStream input) Short form equivalent to.build().read(InputStreams)ResultsReader.Builder.readRowSet(String url) Short form equivalent to.build().read(url)ResultsReader.readRowSet(InputStream input) Read a result set from anInputStream.ResultsReader.readRowSet(String urlOrFilename) Read a result set from a URL or filename.Methods in org.apache.jena.sparql.resultset with parameters of type RowSetModifier and TypeMethodDescriptionstatic booleanResultsCompare.equalsByTerm(RowSet rs1, RowSet rs2) Compare two row sets for equivalence.static booleanResultSetCompare.equalsByTerm(RowSet rs1, RowSet rs2) Deprecated, for removal: This API element is subject to removal in a future version.Compare two result sets for equivalence.static booleanResultsCompare.equalsByTermAndOrder(RowSet rs1, RowSet rs2) Compare two row sets for equivalence.static booleanResultSetCompare.equalsByTermAndOrder(RowSet rs1, RowSet rs2) Deprecated, for removal: This API element is subject to removal in a future version.static booleanResultsCompare.equalsByValue(RowSet rs1, RowSet rs2) static booleanResultSetCompare.equalsByValue(RowSet rs1, RowSet rs2) Deprecated, for removal: This API element is subject to removal in a future version.static booleanResultsCompare.equalsByValueAndOrder(RowSet rs1, RowSet rs2) Compare two result sets for equivalence.static booleanResultSetCompare.equalsByValueAndOrder(RowSet rs1, RowSet rs2) Deprecated, for removal: This API element is subject to removal in a future version.static booleanResultsCompare.equalsExact(RowSet rs1, RowSet rs2) Compare two row sets for equivalence where blank nodes must have same labels Destructive - rs1 and rs2 are both read, possibly to exhaustion.static booleanResultSetCompare.equalsExact(RowSet rs1, RowSet rs2) Deprecated, for removal: This API element is subject to removal in a future version.Compare two result sets for exact equality equivalence and order.static booleanResultSetCompare.isomorphic(RowSet rs1, RowSet rs2) Deprecated, for removal: This API element is subject to removal in a future version.voidResultsWriter.Builder.write(OutputStream output, RowSet rowSet) Short form equivalent tobuild().write(OutputStream, RowSet)voidShort form equivalent tobuild().write(url, RowSet)voidResultsWriter.write(OutputStream output, RowSet rowSet) Write a result set, using the configuration of theResultWriter, to anOutputStream.voidWrite a result set, using the configuration of theResultsWriter, to a file -
Uses of RowSet in org.apache.jena.sparql.sse
Methods in org.apache.jena.sparql.sse that return RowSet -
Uses of RowSet in org.apache.jena.sparql.sse.builders
Methods in org.apache.jena.sparql.sse.builders that return RowSet -
Uses of RowSet in org.apache.jena.sparql.util.iso
Methods in org.apache.jena.sparql.util.iso with parameters of type RowSetModifier and TypeMethodDescriptionstatic booleanIsoAlgRows.isomorphic(RowSet rowset1, RowSet rowset2, BNodeIso.Match matching)
ResultSetCompare.equalsByTerm(RowSet, RowSet)