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