Returns the key at the specified index. The index ranges from 0 to size() - 1 . This method can be used to iterate over all the keys 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)
| 224 | * if the index is out of the allowed range. |
| 225 | */ |
| 226 | public String |
| 227 | getKey(int index) |
| 228 | throws IndexOutOfBoundsException |
| 229 | { |
| 230 | return (String) keys.elementAt(index); |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * Returns the value at the specified index. The index ranges from |