()
| 115 | } |
| 116 | |
| 117 | public Double next() { |
| 118 | if(array != null && i < array.length) |
| 119 | return Double.valueOf(array[i++]); |
| 120 | throw new java.util.NoSuchElementException(); |
| 121 | } |
| 122 | |
| 123 | public void remove() { |
| 124 | throw new UnsupportedOperationException("remove() not supported"); |