MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / dump

Method dump

validating/CircularQueue.java:84–90  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

82 return true;
83 }
84 public String dump() {
85 return "in = " + in +
86 ", out = " + out +
87 ", full() = " + full() +
88 ", empty() = " + empty() +
89 ", CircularQueue = " + Arrays.asList(data);
90 }
91}

Callers 4

invariantMethod · 0.95
showFullnessMethod · 0.80
showEmptinessMethod · 0.80
fullMethod · 0.80

Calls 2

fullMethod · 0.95
emptyMethod · 0.95

Tested by 3

showFullnessMethod · 0.64
showEmptinessMethod · 0.64
fullMethod · 0.64