MCPcopy Create free account
hub / github.com/ddf-project/DDF / toString

Method toString

core/src/main/java/io/ddf/content/SqlResult.java:35–47  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

33 private List<String> rows;
34
35 public String toString(){
36 String outString = "";
37
38 for (String s : schema.getColumnNames()) {
39 outString += s + "\t";
40 }
41 outString += "\n";
42
43 for (String s : rows) {
44 outString += s + "\n";
45 }
46 return outString;
47 }
48}

Callers

nothing calls this directly

Calls 1

getColumnNamesMethod · 0.45

Tested by

no test coverage detected