Package org.apache.jena.sparql.resultset
Class CSVOutput
- java.lang.Object
-
- org.apache.jena.sparql.resultset.OutputBase
-
- org.apache.jena.sparql.resultset.CSVOutput
-
- All Implemented Interfaces:
OutputFormatter
@Deprecated public class CSVOutput extends OutputBase
Deprecated.UseResultSetFormatter.output(org.apache.jena.query.ResultSet, org.apache.jena.sparql.resultset.ResultsFormat)orResultsWriter.create().lang(ResultSetLang.RS_CSV).write(...)Convenient comma separated values - see also TSV (tab separated values) which outputs full RDF terms (in Turtle-style). The CSV format supported is:- First row is variable names without '?'
- Strings, quoted if necessary and numbers output only. No language tags, or datatypes. URIs are send without $lt;> CSV is RFC 4180, but there are many variations.
-
-
Constructor Summary
Constructors Constructor Description CSVOutput()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidformat(java.io.OutputStream out, boolean booleanResult)Deprecated.Format a boolean result - output on the given streamvoidformat(java.io.OutputStream out, ResultSet resultSet)Deprecated.Format a result set - output on the given stream-
Methods inherited from class org.apache.jena.sparql.resultset.OutputBase
asString, asString
-
-
-
-
Method Detail
-
format
public void format(java.io.OutputStream out, ResultSet resultSet)Deprecated.Description copied from interface:OutputFormatterFormat a result set - output on the given stream
-
format
public void format(java.io.OutputStream out, boolean booleanResult)Deprecated.Description copied from interface:OutputFormatterFormat a boolean result - output on the given stream
-
-