()
| 239 | } |
| 240 | |
| 241 | public Long next() { |
| 242 | if(array != null && i < array.length) |
| 243 | return Long.valueOf(array[i++]); |
| 244 | throw new java.util.NoSuchElementException(); |
| 245 | } |
| 246 | |
| 247 | public void remove() { |
| 248 | throw new UnsupportedOperationException("remove() not supported"); |