Package org.eclipse.rdf4j.query.resultio
Class AbstractQueryResultWriter
java.lang.Object
org.eclipse.rdf4j.query.resultio.AbstractQueryResultWriter
- All Implemented Interfaces:
Sink
,QueryResultHandler
,QueryResultWriter
- Direct Known Subclasses:
BinaryQueryResultWriter
,BooleanTextWriter
,ConsoleQueryResultWriter
,SPARQLBooleanJSONWriter
,SPARQLBooleanXMLWriter
,SPARQLResultsCSVWriter
,SPARQLResultsJSONWriter
,SPARQLResultsTSVWriter
,SPARQLResultsXMLWriter
Base class for
QueryResultWriter
s offering common functionality for query result writers.- Author:
- Peter Ansell
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGet theFileFormat
this sink uses.Collection<RioSetting<?>>
Retrieves the current writer configuration as a single object.void
handleSolution
(BindingSet bindingSet) Handles a solution.protected void
handleSolutionImpl
(BindingSet bindings) Extending classes must implement this method instead of overridinghandleSolution(BindingSet)
in order to benefit from automatic handling of RDF-star encoding.void
setWriterConfig
(WriterConfig config) Sets all supplied writer configuration options.void
startQueryResult
(List<String> bindingNames) Indicates the start of a sequence of Solutions.protected boolean
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.QueryResultHandler
endQueryResult, handleBoolean, handleLinks
Methods inherited from interface org.eclipse.rdf4j.query.resultio.QueryResultWriter
endHeader, getQueryResultFormat, handleNamespace, handleStylesheet, startDocument, startHeader
Methods inherited from interface org.eclipse.rdf4j.common.io.Sink
acceptsFileFormat
-
Constructor Details
-
AbstractQueryResultWriter
public AbstractQueryResultWriter()
-
-
Method Details
-
setWriterConfig
Description copied from interface:QueryResultWriter
Sets all supplied writer configuration options.- Specified by:
setWriterConfig
in interfaceQueryResultWriter
- Parameters:
config
- a writer configuration object.
-
getWriterConfig
Description copied from interface:QueryResultWriter
Retrieves the current writer configuration as a single object.- Specified by:
getWriterConfig
in interfaceQueryResultWriter
- Returns:
- a writer configuration object representing the current configuration of the writer.
-
getSupportedSettings
- Specified by:
getSupportedSettings
in interfaceQueryResultWriter
- Returns:
- A collection of
RioSetting
s that are supported by thisQueryResultWriter
.
-
getFileFormat
Description copied from interface:Sink
Get theFileFormat
this sink uses.- Specified by:
getFileFormat
in interfaceSink
- Returns:
- a
FileFormat
. May not benull
.
-
startQueryResult
Description copied from interface:QueryResultHandler
Indicates the start of a sequence of Solutions. The supplied bindingNames are an indication of the values that are in the Solutions. For example, a SPARQL query like select ?X ?Y where { ?X ?P ?Y } will have binding names X and Y.- Specified by:
startQueryResult
in interfaceQueryResultHandler
- Parameters:
bindingNames
- An ordered set of binding names.- Throws:
TupleQueryResultHandlerException
- If there was an error during the starting of the query result handler. This exception may be thrown if theQueryResultHandler.handleBoolean(boolean)
method was called before this method and the handler cannot process both boolean and tuple results simultaneously.
-
handleSolution
Description copied from interface:QueryResultHandler
Handles a solution.- Specified by:
handleSolution
in interfaceQueryResultHandler
- Parameters:
bindingSet
- A single set of tuple results, with binding names bound to values. Each of the binding names in the solution must have previously been registered with theQueryResultHandler.startQueryResult(List)
method.- Throws:
TupleQueryResultHandlerException
- If there was an error during the handling of the query solution. This exception may be thrown if theQueryResultHandler.handleBoolean(boolean)
method was called before this method and the handler cannot process both boolean and tuple results simultaneously.
-
handleSolutionImpl
Extending classes must implement this method instead of overridinghandleSolution(BindingSet)
in order to benefit from automatic handling of RDF-star encoding.- Parameters:
bindings
- the solution to handle- Throws:
TupleQueryResultHandlerException
- Since:
- 3.2.0
-
xsdStringToPlainLiteral
protected boolean xsdStringToPlainLiteral()
-