Maps the key at the given index to the specified value in this StringMap. The index ranges from 0 to size() - 1 . @param index The index of the key. @return The value at the specified index. @throws IndexOutOfBoundsException if the index is out of the allowed range.
(int index, String value)
| 334 | * if the index is out of the allowed range. |
| 335 | */ |
| 336 | public void |
| 337 | put(int index, String value) |
| 338 | { |
| 339 | values.setElementAt(value, index); |
| 340 | } |
| 341 | |
| 342 | /** |
| 343 | * Maps the given case-insensitive key to the specified value in this |
no test coverage detected