|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectgnu.trove.TIterator
gnu.trove.TPrimitiveIterator
gnu.trove.TLongObjectIterator
public class TLongObjectIterator
Iterator for maps of type long and Object.
The iterator semantics for Trove's primitive maps is slightly different from those defined in java.util.Iterator, but still well within the scope of the pattern, as defined by Gamma, et al.
This iterator does not implicitly advance to the next entry when the value at the current position is retrieved. Rather, you must explicitly ask the iterator to advance() and then retrieve either the key(), the value() or both. This is done so that you have the option, but not the obligation, to retrieve keys and/or values as your application requires, and without introducing wrapper objects that would carry both. As the iteration is stateful, access to the key/value parts of the current map entry happens in constant time.
In practice, the iterator is akin to a "search finger" that you move from position to position. Read or write operations affect the current entry only and do not assume responsibility for moving the finger.
Here are some sample scenarios for this class of iterator:
// accessing keys/values through an iterator: for (TLongObjectIterator it = map.iterator(); it.hasNext();) { it.forward(); if (satisfiesCondition(it.key()) { doSomethingWithValue(it.value()); } }
// modifying values in-place through iteration: for (TLongObjectIterator it = map.iterator(); it.hasNext();) { it.forward(); if (satisfiesCondition(it.key()) { it.setValue(newValueForKey(it.key())); } }
// deleting entries during iteration: for (TLongObjectIterator it = map.iterator(); it.hasNext();) { it.forward(); if (satisfiesCondition(it.key()) { it.remove(); } }
// faster iteration by avoiding hasNext(): TLongObjectIterator iterator = map.iterator(); for (int i = map.size(); i-- > 0;) { iterator.advance(); doSomethingWithKeyAndValue(iterator.key(), iterator.value()); }
Field Summary | |
---|---|
private TLongObjectHashMap |
_map
the collection being iterated over |
Fields inherited from class gnu.trove.TPrimitiveIterator |
---|
_hash |
Fields inherited from class gnu.trove.TIterator |
---|
_expectedSize, _index |
Constructor Summary | |
---|---|
TLongObjectIterator(TLongObjectHashMap map)
Creates an iterator over the specified map |
Method Summary | |
---|---|
void |
advance()
Moves the iterator forward to the next entry in the underlying map. |
long |
key()
Provides access to the key of the mapping at the iterator's position. |
java.lang.Object |
setValue(java.lang.Object val)
Replace the value of the mapping at the iterator's position with the specified value. |
java.lang.Object |
value()
Provides access to the value of the mapping at the iterator's position. |
Methods inherited from class gnu.trove.TPrimitiveIterator |
---|
nextIndex |
Methods inherited from class gnu.trove.TIterator |
---|
hasNext, moveToNextIndex, remove |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private final TLongObjectHashMap _map
Constructor Detail |
---|
public TLongObjectIterator(TLongObjectHashMap map)
Method Detail |
---|
public void advance()
NoSuchElementException
- if the iterator is already exhaustedpublic long key()
public java.lang.Object value()
public java.lang.Object setValue(java.lang.Object val)
val
- the value to set in the current entry
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |