Uses of Interface
net.openhft.koloboke.collect.ObjIterator

Packages that use ObjIterator
net.openhft.koloboke.collect The root package of the collection library. 
net.openhft.koloboke.collect.set Contains interfaces of Set specializations and their factories. 
 

Uses of ObjIterator in net.openhft.koloboke.collect
 

Methods in net.openhft.koloboke.collect that return ObjIterator
 ObjIterator<E> ObjCollection.iterator()
          Returns a new iterator over this collection's elements.
 

Uses of ObjIterator in net.openhft.koloboke.collect.set
 

Methods in net.openhft.koloboke.collect.set that return ObjIterator
 ObjIterator<E> ObjSet.iterator()
          Deprecated. Instead of explicit iterator() calls, use ObjCollection.cursor(); iterator() is still sensible only as a backing mechanism for Java 5's for-each statements.