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