Class SPARQLResultsCSVParser
java.lang.Object
org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
org.eclipse.rdf4j.query.resultio.AbstractTupleQueryResultParser
org.eclipse.rdf4j.query.resultio.text.csv.SPARQLResultsCSVParser
- All Implemented Interfaces:
QueryResultParser
,TupleQueryResultParser
public class SPARQLResultsCSVParser
extends AbstractTupleQueryResultParser
implements TupleQueryResultParser
SPARQL Results CSV format parser.
- Author:
- Jeen Broekstra, Andrew Rucker Jones
-
Field Summary
Fields inherited from class org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
handler, valueFactory
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the query result format that this parser can parse.void
parse
(InputStream in) Parses the data from the supplied InputStream.Methods inherited from class org.eclipse.rdf4j.query.resultio.AbstractTupleQueryResultParser
getQueryResultFormat, parseQueryResult, setTupleQueryResultHandler
Methods inherited from class org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
getParseErrorListener, getParseLocationListener, getParserConfig, getSupportedSettings, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactory
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.rdf4j.query.resultio.QueryResultParser
getParserConfig, getQueryResultFormat, getSupportedSettings, parseQueryResult, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactory
Methods inherited from interface org.eclipse.rdf4j.query.resultio.TupleQueryResultParser
setTupleQueryResultHandler
-
Constructor Details
-
SPARQLResultsCSVParser
public SPARQLResultsCSVParser()
-
-
Method Details
-
getTupleQueryResultFormat
Description copied from interface:TupleQueryResultParser
Gets the query result format that this parser can parse.- Specified by:
getTupleQueryResultFormat
in interfaceTupleQueryResultParser
-
parse
public void parse(InputStream in) throws QueryResultParseException, TupleQueryResultHandlerException Description copied from interface:TupleQueryResultParser
Parses the data from the supplied InputStream.- Specified by:
parse
in interfaceTupleQueryResultParser
- Parameters:
in
- The InputStream from which to read the data.- Throws:
QueryResultParseException
- If the parser has encountered an unrecoverable parse error.TupleQueryResultHandlerException
- If the configured query result handler has encountered an unrecoverable error.
-