|
Oracle® Coherence Java API Reference Release 12.1.2.0.3 E26043-02 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
public static interface LongArray.Iterator
An Iterator that adds a "current element" concept, similar to the Map.Entry interface.
| Method Summary | |
|---|---|
long |
getIndex()Returns the index of the current value, which is the value returned by the most recent call to the next method. |
java.lang.Object |
getValue()Returns the current value, which is the same value returned by the most recent call to the next method, or the most recent value passed to setValue if setValue were called after the next method. |
boolean |
hasNext()Returns true if the iteration has more elements. |
java.lang.Object |
next()Returns the next element in the iteration. |
void |
remove()Removes from the underlying collection the last element returned by the iterator (optional operation). |
java.lang.Object |
setValue(java.lang.Object oValue)Stores a new value at the current value index, returning the value that was replaced. |
| Method Detail |
|---|
boolean hasNext()
hasNext in interface java.util.Iteratorjava.lang.Object next()
next in interface java.util.Iteratorjava.util.NoSuchElementException - iteration has no more elementslong getIndex()
java.lang.IllegalStateException - if the next method has not yet been called, or the remove method has already been called after the last call to the next method.java.lang.Object getValue()
java.lang.IllegalStateException - if the next method has not yet been called, or the remove method has already been called after the last call to the next method.java.lang.Object setValue(java.lang.Object oValue)
java.lang.IllegalStateException - if the next method has not yet been called, or the remove method has already been called after the last call to the next method.void remove()
remove in interface java.util.Iteratorjava.lang.UnsupportedOperationException - if the remove operation is not supported by this Iteratorjava.lang.IllegalStateException - if the next method has not yet been called, or the remove method has already been called after the last call to the next method.
|
Oracle® Coherence Java API Reference Release 12.1.2.0.3 E26043-02 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||