Package org.eclipse.rdf4j.query.resultio
Interface BooleanQueryResultWriterFactory
- All Known Implementing Classes:
BooleanTextWriterFactory
,SPARQLBooleanJSONWriterFactory
,SPARQLBooleanXMLWriterFactory
public interface BooleanQueryResultWriterFactory
Returns
BooleanQueryResultWriter
s for a specific boolean query result format.- Author:
- Arjohn Kampman
-
Method Summary
Modifier and TypeMethodDescriptionReturns the boolean query result format for this factory.getWriter
(OutputStream out) Returns aBooleanQueryResultWriter
instance that will write to the supplied output stream.
-
Method Details
-
getBooleanQueryResultFormat
BooleanQueryResultFormat getBooleanQueryResultFormat()Returns the boolean query result format for this factory. -
getWriter
Returns aBooleanQueryResultWriter
instance that will write to the supplied output stream.- Parameters:
out
- The OutputStream to write the result to.
-