()
| 91 | } |
| 92 | |
| 93 | public Long next() { |
| 94 | if(array != null && i < array.length) |
| 95 | return Long.valueOf(array[i++]); |
| 96 | throw new java.util.NoSuchElementException(); |
| 97 | } |
| 98 | |
| 99 | public void remove() { |
| 100 | throw new UnsupportedOperationException("remove() not supported"); |