()
| 164 | } |
| 165 | |
| 166 | public Long next() { |
| 167 | if(array != null && i < array.length) |
| 168 | return Long.valueOf(array[i++]); |
| 169 | throw new java.util.NoSuchElementException(); |
| 170 | } |
| 171 | |
| 172 | public void remove() { |
| 173 | throw new UnsupportedOperationException("remove() not supported"); |