{@inheritDoc}
()
| 492 | * {@inheritDoc} |
| 493 | */ |
| 494 | @Override |
| 495 | public Comparable next() { |
| 496 | // not thread safe |
| 497 | if (!hasNext()) { |
| 498 | throw new NoSuchElementException(); |
| 499 | } |
| 500 | nextFetched = false; |
| 501 | index++; |
| 502 | return value; |
| 503 | } |
| 504 | |
| 505 | /** |
| 506 | * {@inheritDoc} |