use of org.apache.jena.atlas.io.IndentedLineBuffer in project jena by apache.
the class BPTreeNode method dumpToString.
public String dumpToString() {
IndentedLineBuffer buff = new IndentedLineBuffer();
output(buff);
return buff.asString();
}
use of org.apache.jena.atlas.io.IndentedLineBuffer in project jena by apache.
the class ExtHash method toString.
// =====================
@Override
public String toString() {
IndentedLineBuffer buff = new IndentedLineBuffer();
dump(buff);
return buff.asString();
}
use of org.apache.jena.atlas.io.IndentedLineBuffer in project jena by apache.
the class TableWriter method asSSE.
public static String asSSE(Table table) {
IndentedLineBuffer out = new IndentedLineBuffer();
TableWriter.output(table, out);
return out.asString();
}
use of org.apache.jena.atlas.io.IndentedLineBuffer in project jena by apache.
the class DatasetGraphBase method toString.
@Override
public String toString() {
// Using the size of the graphs would be better.
IndentedLineBuffer out = new IndentedLineBuffer();
WriterGraph.output(out, this, null);
return out.asString();
}
use of org.apache.jena.atlas.io.IndentedLineBuffer in project jena by apache.
the class Item method toString.
@Override
public String toString() {
IndentedLineBuffer iBuff = new IndentedLineBuffer();
ItemWriter.write(iBuff, this, null);
//iBuff.getIndentedWriter().flush() ;
return iBuff.asString();
}
Aggregations