Returns the element at the specified position in this list. @param index index of element to return. @return the element at the specified position in this list. @exception IndexOutOfBoundsException if the index is out of range (index < 0 || index >= size()).
(final int index)
| 340 | */ |
| 341 | |
| 342 | public int get(final int index) |
| 343 | { |
| 344 | if (index >= _limit) |
| 345 | { |
| 346 | throw new IndexOutOfBoundsException(); |
| 347 | } |
| 348 | return _array[ index ]; |
| 349 | } |
| 350 | |
| 351 | /** |
| 352 | * Returns the hash code value for this list. The hash code of a |
no outgoing calls