java.lang.Object
org.apache.jena.riot.rowset.rw.RowSetReaderJSON_V1
- All Implemented Interfaces:
RowSetReader
Read JSON format SPARQL Results.
SPARQL 1.1 Query Results JSON Format
This was the ResultSet/RowSet reader for JSON up to and including Jena 4.4.0.
Jena 4.5.0 introduced RowSetReaderJSONStreaming
.
To switch back, call install()
.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic void
install()
readAny
(InputStream in, Context context) Read from anInputStream
and produce aQueryExecResult
.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.jena.riot.rowset.RowSetReader
read, read
-
Field Details
-
factory
-
-
Method Details
-
install
public static void install() -
readAny
Description copied from interface:RowSetReader
Read from anInputStream
and produce aQueryExecResult
. Note that return result may stream and so the input stream may be read while theRowSet
is used. SeeRowSetReader.read(InputStream, Context)
for more details- Specified by:
readAny
in interfaceRowSetReader
- Parameters:
in
- InputStream to read from.- Returns:
- QueryExecResult
-