MCPcopy Create free account
hub / github.com/jOOQ/jOOQ / toString

Method toString

jOOQ/src/main/java/org/jooq/Source.java:477–491  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

475 }
476
477 @Override
478 public String toString() {
479 if (string != null)
480 return string;
481 else if (bytes != null)
482 return readString();
483 else if (reader != null)
484 return "Source (Reader)";
485 else if (inputStream != null)
486 return "Source (InputStream)";
487 else if (file != null)
488 return "Source (" + file + ")";
489 else
490 return "Source (other)";
491 }
492}

Callers

nothing calls this directly

Calls 1

readStringMethod · 0.95

Tested by

no test coverage detected