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)
| 1210 | * or null if there was no value. |
| 1211 | */ |
| 1212 | public Object remove(String key) { |
| 1213 | return this.map.remove(key); |
| 1214 | } |
| 1215 | |
| 1216 | /** |
| 1217 | * Get an enumeration of the keys of the JSONObject. |