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

Method isNull

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

Determine if the value is null. @webref @param index must be between 0 and length() - 1 @return true if the value at the index is null, or if there is no value.

(int index)

Source from the content-addressed store, hash-verified

1052 * @return true if the value at the index is null, or if there is no value.
1053 */
1054 public boolean isNull(int index) {
1055 return JSONObject.NULL.equals(this.opt(index));
1056 }
1057
1058
1059 /**

Callers

nothing calls this directly

Calls 2

optMethod · 0.95
equalsMethod · 0.45

Tested by

no test coverage detected