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

Method equals

core/src/processing/data/JSONObject.java:154–157  ·  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

152 * or null.
153 */
154 @Override
155 public boolean equals(Object object) {
156 return object == null || object == this;
157 }
158
159 /**
160 * 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