()
| 264 | } |
| 265 | |
| 266 | public Boolean next() { |
| 267 | if(array != null && i < array.length) |
| 268 | return Boolean.valueOf(array[i++]); |
| 269 | throw new java.util.NoSuchElementException(); |
| 270 | } |
| 271 | |
| 272 | public void remove() { |
| 273 | throw new UnsupportedOperationException("remove() not supported"); |