MCPcopy Index your code
hub / github.com/benfry/processing4 / toString

Method toString

core/src/processing/data/JSONArray.java:1233–1240  ·  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

1231 * Same as format(2). Use the format() function for more options.
1232 */
1233 @Override
1234 public String toString() {
1235 try {
1236 return format(2);
1237 } catch (Exception e) {
1238 return null;
1239 }
1240 }
1241
1242
1243 /**

Callers 3

getStringMethod · 0.45
formatMethod · 0.45
joinMethod · 0.45

Calls 1

formatMethod · 0.95

Tested by

no test coverage detected