public class SPARQLResultsTSVWriter extends AbstractQueryResultWriter implements TupleQueryResultWriter
Modifier and Type | Field and Description |
---|---|
protected boolean |
tupleVariablesFound |
Constructor and Description |
---|
SPARQLResultsTSVWriter(OutputStream out) |
Modifier and Type | Method and Description |
---|---|
void |
endHeader()
Indicates the end of the header.
|
void |
endQueryResult()
Indicates the end of a sequence of solutions.
|
TupleQueryResultFormat |
getQueryResultFormat()
Gets the query result format that this writer uses.
|
TupleQueryResultFormat |
getTupleQueryResultFormat()
Gets the query result format that this writer uses.
|
void |
handleBoolean(boolean value)
Handles the specified boolean value.
|
void |
handleLinks(List<String> linkUrls)
Handles the links elements which are present in SPARQL Results JSON and SPARQL Results XML documents in the
header.
|
void |
handleNamespace(String prefix,
String uri)
Handles a namespace prefix declaration.
|
void |
handleSolution(BindingSet bindingSet)
Handles a solution.
|
void |
handleStylesheet(String stylesheetUrl)
Handles a stylesheet URL.
|
void |
startDocument()
Indicates the start of the document.
|
void |
startHeader()
Indicates the start of the header.
|
void |
startQueryResult(List<String> bindingNames)
Indicates the start of a sequence of Solutions.
|
protected void |
writeBNode(BNode bNode) |
protected void |
writeResource(Resource res) |
protected void |
writeURI(IRI uri) |
protected void |
writeValue(Value val) |
getSupportedSettings, getWriterConfig, setWriterConfig, xsdStringToPlainLiteral
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getSupportedSettings, getWriterConfig, setWriterConfig
public SPARQLResultsTSVWriter(OutputStream out)
out
- public void startQueryResult(List<String> bindingNames) throws TupleQueryResultHandlerException
QueryResultHandler
startQueryResult
in interface QueryResultHandler
bindingNames
- An ordered set of binding names.TupleQueryResultHandlerException
- If there was an error during the starting of the query result handler.
This exception may be thrown if the QueryResultHandler.handleBoolean(boolean)
method was called before this method and the handler cannot process both
boolean and tuple results simultaneously.public void endQueryResult() throws TupleQueryResultHandlerException
QueryResultHandler
endQueryResult
in interface QueryResultHandler
TupleQueryResultHandlerException
- If there was an error during the ending of the query result handler.
This exception may be thrown if the QueryResultHandler.handleBoolean(boolean)
method was called before this method and the handler cannot process both
boolean and tuple results simultaneously.public void handleSolution(BindingSet bindingSet) throws TupleQueryResultHandlerException
QueryResultHandler
handleSolution
in interface QueryResultHandler
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 the QueryResultHandler.startQueryResult(List)
method.TupleQueryResultHandlerException
- If there was an error during the handling of the query solution. This
exception may be thrown if the QueryResultHandler.handleBoolean(boolean)
method
was called before this method and the handler cannot process both
boolean and tuple results simultaneously.public final TupleQueryResultFormat getTupleQueryResultFormat()
TupleQueryResultWriter
getTupleQueryResultFormat
in interface TupleQueryResultWriter
public final TupleQueryResultFormat getQueryResultFormat()
QueryResultWriter
getQueryResultFormat
in interface QueryResultWriter
protected void writeValue(Value val) throws IOException
IOException
protected void writeResource(Resource res) throws IOException
IOException
protected void writeURI(IRI uri) throws IOException
IOException
protected void writeBNode(BNode bNode) throws IOException
IOException
public void startDocument() throws TupleQueryResultHandlerException
QueryResultWriter
startDocument
in interface QueryResultWriter
TupleQueryResultHandlerException
public void handleStylesheet(String stylesheetUrl) throws TupleQueryResultHandlerException
QueryResultWriter
QueryResultWriter.startDocument()
and before
QueryResultWriter.startHeader()
.
NOTE: If the format does not support stylesheets, it must silently ignore calls to this method.
handleStylesheet
in interface QueryResultWriter
stylesheetUrl
- The URL of the stylesheet to be used to style the results.TupleQueryResultHandlerException
public void startHeader() throws TupleQueryResultHandlerException
QueryResultWriter
startHeader
in interface QueryResultWriter
TupleQueryResultHandlerException
public void handleLinks(List<String> linkUrls) throws TupleQueryResultHandlerException
QueryResultHandler
NOTE: If the format does not support links, it must silently ignore a call to this method.
An accumulating handler should accumulate these links.
handleLinks
in interface QueryResultHandler
linkUrls
- The URLs of the links to handle.TupleQueryResultHandlerException
public void endHeader() throws TupleQueryResultHandlerException
QueryResultWriter
QueryResultWriter.startHeader()
and before any calls to
QueryResultHandler.handleSolution(org.eclipse.rdf4j.query.BindingSet)
.endHeader
in interface QueryResultWriter
TupleQueryResultHandlerException
public void handleBoolean(boolean value) throws QueryResultHandlerException
QueryResultHandler
handleBoolean
in interface QueryResultHandler
value
- The boolean value to handle.QueryResultHandlerException
- If there was an error during the handling of this value. This exception may
be thrown if the QueryResultHandler.startQueryResult(List)
,
QueryResultHandler.handleSolution(BindingSet)
or QueryResultHandler.endQueryResult()
methods
were called before this method was called, and the handler cannot process
both boolean and tuple results simultaneously.public void handleNamespace(String prefix, String uri) throws QueryResultHandlerException
QueryResultWriter
QueryResultWriter.startDocument()
to
ensure that it has a document wide effect.
NOTE: If the format does not support namespaces, it must silently ignore calls to this method.
handleNamespace
in interface QueryResultWriter
prefix
- The prefix to use for the namespaceuri
- The full URI that is to be represented by the prefix.QueryResultHandlerException
Copyright © 2015-2020 Eclipse Foundation. All Rights Reserved.