Remove a name and its value, if present. @param key The name to be removed. @return The value that was associated with the name, or null if there was no value.
(String key)
| 1461 | * no value. |
| 1462 | */ |
| 1463 | public Object remove(String key) { |
| 1464 | return this.map.remove(key); |
| 1465 | } |
| 1466 | |
| 1467 | /** |
| 1468 | * Determine if two JSONObjects are similar. They must contain the same set |