MCPcopy Create free account
hub / github.com/BaseXdb/basex / toString

Method toString

basex-core/src/main/java/org/basex/data/Data.java:1112–1118  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1110 public abstract boolean inMemory();
1111
1112 @Override
1113 public final String toString() {
1114 final int max = 20;
1115 final DataPrinter dp = new DataPrinter(this);
1116 dp.add(0, max);
1117 return meta.size > max ? dp + Text.DOTS : dp.toString();
1118 }
1119}

Callers

nothing calls this directly

Calls 2

addMethod · 0.95
toStringMethod · 0.95

Tested by

no test coverage detected