public class ListBufferedIterator<T>
extends Object
implements BufferedIterator
An implementation for BufferedIterator wraps ListIterator. This version provides an implementation for remove().
| Constructor and description |
|---|
ListBufferedIterator(List<T> list)Creates a buffered iterator that peeks into the supplied list. |
| Type Params | Return Type | Name and description |
|---|---|---|
|
public boolean |
hasNext()Returns true if the iteration has more elements.
(In other words, returns true if next would
return an element rather than throwing an exception.)
|
|
public T |
head()* Returns the next element without advancing the iterator. * *
|
|
public T |
next()Returns the next element in the iteration.
|
|
public void |
remove()Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to next. The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method, unless an overriding class has specified a concurrent modification policy. The behavior of an iterator is unspecified if this method is called after a call to the forEachRemaining method.
|
Creates a buffered iterator that peeks into the supplied list.
list - the list to iterate Returns true if the iteration has more elements.
(In other words, returns true if next would
return an element rather than throwing an exception.)
true if the iteration has more elements* Returns the next element without advancing the iterator. * *
Returns the next element in the iteration.
Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to next.
The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method, unless an overriding class has specified a concurrent modification policy.
The behavior of an iterator is unspecified if this method is called after a call to the forEachRemaining method.
remove
operation is not supported by this iteratornext method has not
yet been called, or the remove method has already
been called after the last call to the next
methodCopyright © 2003-2026 The Apache Software Foundation. All rights reserved.