Class ResultsWriter
- java.lang.Object
-
- org.apache.jena.riot.resultset.rw.ResultsWriter
-
public class ResultsWriter extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classResultsWriter.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResultsWriter.Buildercreate()Create aResultsWriter.Builder.voidwrite(java.io.OutputStream output, boolean booleanResult)Write a boolean result, using the configurartion of theResultWriter, to anOutputStream.voidwrite(java.io.OutputStream output, ResultSet resultSet)Write a result set, using the configuration of theResultWriter, to anOutputStream.voidwrite(java.lang.String filename, boolean booleanResult)Write a boolean result, using the configurartion of theResultWriter, to a filevoidwrite(java.lang.String filename, ResultSet resultSet)Write a result set, using the configurartion of theResultWriter, to a file
-
-
-
Method Detail
-
create
public static ResultsWriter.Builder create()
Create aResultsWriter.Builder.
-
write
public void write(java.lang.String filename, ResultSet resultSet)Write a result set, using the configurartion of theResultWriter, to a file
-
write
public void write(java.io.OutputStream output, ResultSet resultSet)Write a result set, using the configuration of theResultWriter, to anOutputStream.
-
write
public void write(java.lang.String filename, boolean booleanResult)Write a boolean result, using the configurartion of theResultWriter, to a file
-
write
public void write(java.io.OutputStream output, boolean booleanResult)Write a boolean result, using the configurartion of theResultWriter, to anOutputStream.
-
-