Maps the given case-insensitive key to the specified value in this StringMap. The new mapping is added to this StringMap even if the given key already has a mapping. In this way it is possible to create a key that maps to two or more values. Since the same key may appear multiple times in t
(String key, String value)
| 437 | * @see #keys |
| 438 | */ |
| 439 | public void |
| 440 | add(String key, String value) |
| 441 | { |
| 442 | keys.addElement(key); |
| 443 | values.addElement(value); |
| 444 | } |
| 445 | |
| 446 | /** |
| 447 | * Removes the given case-insensitive key and its corresponding value |