Returns the value at the specified index. The index ranges from 0 to size() - 1 . This method can be used to iterate over all the values in this StringMap in the order in which they were inserted, subject to any intervening deletions. @param index The index of the key
(int index)
| 247 | * if the index is out of the allowed range. |
| 248 | */ |
| 249 | public String |
| 250 | get(int index) |
| 251 | throws IndexOutOfBoundsException |
| 252 | { |
| 253 | return (String) values.elementAt(index); |
| 254 | } |
| 255 | |
| 256 | /** |
| 257 | * Returns the value that the specified case-insensitive key maps to |