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

Method equals

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

A Null object is equal to the null value and to itself. @param object An object to test for nullness. @return true if the object parameter is the JSONObject.NULL object or null.

(Object object)

Source from the content-addressed store, hash-verified

165 * or null.
166 */
167 @Override
168 public boolean equals(Object object) {
169 return object == null || object == this;
170 }
171
172 /**
173 * Get the "null" string value.

Callers 15

nextValueMethod · 0.45
removeValuesMethod · 0.45
replaceValueMethod · 0.45
replaceValuesMethod · 0.45
indexMethod · 0.45
hasValueMethod · 0.45
getChildMethod · 0.45
getChildRecursiveMethod · 0.45
getChildrenMethod · 0.45
formatMethod · 0.45
getStringMethod · 0.45
getBooleanMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected