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

Method getStringArray

core/src/processing/data/JSONArray.java:567–573  ·  view source on GitHub ↗

Get this entire array as a String array. @webref jsonarray:method @brief Gets the entire array as an array of Strings @see JSONArray#getIntArray()

()

Source from the content-addressed store, hash-verified

565 * @see JSONArray#getIntArray()
566 */
567 public String[] getStringArray() {
568 String[] outgoing = new String[size()];
569 for (int i = 0; i < size(); i++) {
570 outgoing[i] = getString(i);
571 }
572 return outgoing;
573 }
574
575
576 /**

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.95
getStringMethod · 0.95

Tested by

no test coverage detected