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)
| 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. |
no outgoing calls
no test coverage detected