Operates exactly as #get(int) @param index the index of the value to get @return the value at the index
(int index)
| 127 | * @return the value at the index |
| 128 | */ |
| 129 | public int getI(int index) |
| 130 | { |
| 131 | boundsCheck(index); |
| 132 | return array[index]; |
| 133 | } |
| 134 | |
| 135 | @Override |
| 136 | public Integer get(int index) |