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

Method isNull

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

Determine if the value associated with the key is null or if there is no value. @webref @param key A key string. @return true if there is no value associated with the key or if the value is the JSONObject.NULL object.

(String key)

Source from the content-addressed store, hash-verified

922 * the value is the JSONObject.NULL object.
923 */
924 public boolean isNull(String key) {
925 return JSONObject.NULL.equals(this.opt(key));
926 }
927
928
929 /**

Callers

nothing calls this directly

Calls 2

optMethod · 0.95
equalsMethod · 0.45

Tested by

no test coverage detected