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)
| 1466 | * or null if there was no value. |
| 1467 | */ |
| 1468 | public Object remove(String key) { |
| 1469 | return this.map.remove(key); |
| 1470 | } |
| 1471 | |
| 1472 | |
| 1473 | /** |