MCPcopy Create free account
hub / github.com/antlr/codebuff / toString

Method toString

corpus/java/training/guava/cache/CacheStats.java:267–277  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

265 }
266
267 @Override
268 public String toString() {
269 return MoreObjects.toStringHelper(this)
270 .add("hitCount", hitCount)
271 .add("missCount", missCount)
272 .add("loadSuccessCount", loadSuccessCount)
273 .add("loadExceptionCount", loadExceptionCount)
274 .add("totalLoadTime", totalLoadTime)
275 .add("evictionCount", evictionCount)
276 .toString();
277 }
278}

Callers

nothing calls this directly

Calls 3

toStringHelperMethod · 0.95
toStringMethod · 0.65
addMethod · 0.65

Tested by

no test coverage detected