MCPcopy Create free account
hub / github.com/boxbeam/RedLib / toString

Method toString

src/redempt/redlib/json/JSONList.java:53–58  ·  view source on GitHub ↗

@return A JSON string representing this JSONList

()

Source from the content-addressed store, hash-verified

51 * @return A JSON string representing this JSONList
52 */
53 @Override
54 public String toString() {
55 StringJoiner joiner = new StringJoiner(", ", "[", "]");
56 forEach(o -> joiner.add(JSONParser.toJSONString(o)));
57 return joiner.toString();
58 }
59
60}

Callers 1

toStringMethod · 0.95

Calls 4

toJSONStringMethod · 0.95
forEachMethod · 0.80
toStringMethod · 0.65
addMethod · 0.45

Tested by

no test coverage detected