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

Method toString

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

1141 * Same as format(2). Use the format() function for more options.
1142 */
1143 @Override
1144 public String toString() {
1145 try {
1146 return format(2);
1147 } catch (Exception e) {
1148 return null;
1149 }
1150 }
1151
1152
1153 /**

Callers 3

getStringMethod · 0.45
formatMethod · 0.45
joinMethod · 0.45

Calls 1

formatMethod · 0.95

Tested by

no test coverage detected