MCPcopy Create free account
hub / github.com/careercup/ctci / encodeToString

Method encodeToString

java/Chapter 17/Question17_10/QuestionOO.java:38–42  ·  view source on GitHub ↗
(Element root)

Source from the content-addressed store, hash-verified

36 }
37
38 public static String encodeToString(Element root) {
39 StringBuffer sb = new StringBuffer();
40 encode(root, sb);
41 return sb.toString();
42 }
43
44 public static void main(String args[]) {
45 Element root = new Element("family");

Callers 1

mainMethod · 0.95

Calls 2

encodeMethod · 0.95
toStringMethod · 0.45

Tested by

no test coverage detected