@GwtCompatible public interface PeekingIterator<E> extends Iterator<E>
See the Guava User Guide article on 
 PeekingIterator.
| Modifier and Type | Method and Description | 
|---|---|
E | 
next() | 
E | 
peek()
Returns the next element in the iteration, without advancing the iteration. 
 | 
void | 
remove() | 
forEachRemaining, hasNextE peek()
Calls to peek() should not change the state of the iteration,
 except that it may prevent removal of the most recent element via
 remove().
NoSuchElementException - if the iteration has no more elements
     according to Iterator.hasNext()void remove()
Copyright © 2010–2017. All rights reserved.