use of org.apache.jena.atlas.io.IndentedWriter in project jena by apache.
the class SSE method write.
public static void write(OutputStream out, Node node) {
IndentedWriter iOut = new IndentedWriter(out);
write(iOut, node);
iOut.flush();
}
use of org.apache.jena.atlas.io.IndentedWriter in project jena by apache.
the class SSE method write.
public static void write(OutputStream out, Graph graph) {
IndentedWriter iOut = new IndentedWriter(out);
write(iOut, graph);
iOut.flush();
}
use of org.apache.jena.atlas.io.IndentedWriter in project jena by apache.
the class SSE method write.
public static void write(OutputStream out, DatasetGraph dataset) {
IndentedWriter iOut = new IndentedWriter(out);
write(iOut, dataset);
iOut.flush();
}
use of org.apache.jena.atlas.io.IndentedWriter in project jena by apache.
the class SSE method write.
public static void write(OutputStream out, Quad quad) {
IndentedWriter iOut = new IndentedWriter(out);
write(iOut, quad);
iOut.flush();
}
use of org.apache.jena.atlas.io.IndentedWriter in project jena by apache.
the class SSE method write.
public static void write(OutputStream out, Model model) {
IndentedWriter iOut = new IndentedWriter(out);
write(iOut, model);
iOut.flush();
}
Aggregations