MCPcopy Index your code
hub / github.com/processing/processing / toString

Method toString

core/src/processing/data/JSONObject.java:1615–1622  ·  view source on GitHub ↗

Return the JSON data formatted with two spaces for indents. Chosen to do this since it's the most common case (e.g. with println()). Same as format(2). Use the format() function for more options.

()

Source from the content-addressed store, hash-verified

1613 * Same as format(2). Use the format() function for more options.
1614 */
1615 @Override
1616 public String toString() {
1617 try {
1618 return format(2);
1619 } catch (Exception e) {
1620 return null;
1621 }
1622 }
1623
1624
1625 /**

Callers 10

JSONObjectMethod · 0.45
doubleToStringMethod · 0.45
getStringMethod · 0.45
numberToStringMethod · 0.45
quoteMethod · 0.45
formatMethod · 0.45
valueToStringMethod · 0.45
wrapMethod · 0.45
writeValueMethod · 0.45
writeInternalMethod · 0.45

Calls 1

formatMethod · 0.95

Tested by

no test coverage detected