{@inheritDoc}
()
| 706 | * {@inheritDoc} |
| 707 | */ |
| 708 | @Override |
| 709 | public Comparable next() { |
| 710 | if (!hasNext()) { |
| 711 | throw new NoSuchElementException(); |
| 712 | } |
| 713 | |
| 714 | fetchNextIfNeeded(); |
| 715 | isNextFetched = false; |
| 716 | return next; |
| 717 | } |
| 718 | |
| 719 | private void fetchNextIfNeeded() { |
| 720 | if (isNextFetched) { |