Get an entry at a particular index. @webref stringlist:method @brief Get an entry at a particular index
(int index)
| 138 | * @brief Get an entry at a particular index |
| 139 | */ |
| 140 | public String get(int index) { |
| 141 | if (index >= count) { |
| 142 | throw new ArrayIndexOutOfBoundsException(index); |
| 143 | } |
| 144 | return data[index]; |
| 145 | } |
| 146 | |
| 147 | |
| 148 | /** |
no outgoing calls
no test coverage detected