MCPcopy Create free account
hub / github.com/OpenTSDB/asynchbase / toString

Method toString

src/GetRequest.java:468–478  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

466 }
467
468 public String toString() {
469 final String klass = isGetRequest() ? "GetRequest" : "Exists";
470 if (this.filter != null) {
471 final String filter = this.filter.toString();
472 final StringBuilder buf = new StringBuilder(9 + 1 + filter.length() + 1)
473 .append(", filter=").append(filter);
474 return super.toStringWithQualifiers(klass, family, qualifiers, null, buf.toString());
475 } else {
476 return super.toStringWithQualifiers(klass, family, qualifiers);
477 }
478 }
479
480 // ---------------------- //
481 // Package private stuff. //

Callers

nothing calls this directly

Calls 3

isGetRequestMethod · 0.95
appendMethod · 0.80

Tested by

no test coverage detected