| Modifiers | Name | Description |
|---|---|---|
protected int |
cursor |
Current list index for iterator-driven updates. |
| Constructor and description |
|---|
ObservableIterator(Iterator iterDelegate)Creates an observable iterator around the supplied delegate. |
| Type Params | Return Type | Name and description |
|---|---|---|
|
public Iterator |
getDelegate()Returns the wrapped iterator. |
|
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 Object |
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 an observable iterator around the supplied delegate.
iterDelegate - the backing iteratorReturns the wrapped iterator.
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 elementsReturns 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.