Package com.tangosol.util
Class SafeHashMap.EntrySet.EntrySetIterator
- java.lang.Object
- 
- com.oracle.coherence.common.collections.AbstractStableIterator
- 
- com.tangosol.util.SafeHashMap.EntrySet.EntrySetIterator
 
 
- 
- All Implemented Interfaces:
- Enumeration,- Iterator
 - Enclosing class:
- SafeHashMap.EntrySet
 
 protected class SafeHashMap.EntrySet.EntrySetIterator extends com.oracle.coherence.common.collections.AbstractStableIteratorAn Iterator over the EntrySet that is backed by the SafeHashMap.
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedEntrySetIterator()Construct an Iterator over the Entries in the SafeHashMap.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidadvance()Advance to the next object.protected voiddeactivate()Shut down the Iterator.protected voidremove(Object oPrev)Remove the specified item.- 
Methods inherited from class com.oracle.coherence.common.collections.AbstractStableIteratorgetPrevious, hasMoreElements, hasNext, next, nextElement, remove, setNext
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface java.util.EnumerationasIterator
 - 
Methods inherited from interface java.util.IteratorforEachRemaining
 
- 
 
- 
- 
- 
Method Detail- 
advanceprotected void advance() Advance to the next object.- Specified by:
- advancein class- com.oracle.coherence.common.collections.AbstractStableIterator
 
 - 
removeprotected void remove(Object oPrev) Remove the specified item.This is an optional operation. If the Iterator supports element removal, then it should implement this method, which is delegated to by the AbstractStableIterator.remove()method.- Overrides:
- removein class- com.oracle.coherence.common.collections.AbstractStableIterator
- Parameters:
- oPrev- the previously iterated object that should be removed
 
 - 
deactivateprotected void deactivate() Shut down the Iterator. This is done on exhaustion of the contents of the Iterator, or on finalization of the Iterator.
 
- 
 
-