com.esotericsoftware.kryo.util
Class IdentityMap.Entries<K,V>

java.lang.Object
  extended by com.esotericsoftware.kryo.util.IdentityMap.Entries<K,V>
All Implemented Interfaces:
java.lang.Iterable<IdentityMap.Entry<K,V>>, java.util.Iterator<IdentityMap.Entry<K,V>>
Enclosing class:
IdentityMap<K,V>

public static class IdentityMap.Entries<K,V>
extends java.lang.Object
implements java.lang.Iterable<IdentityMap.Entry<K,V>>, java.util.Iterator<IdentityMap.Entry<K,V>>


Constructor Summary
IdentityMap.Entries(IdentityMap<K,V> map)
           
 
Method Summary
 boolean hasNext()
           
 java.util.Iterator<IdentityMap.Entry<K,V>> iterator()
           
 IdentityMap.Entry<K,V> next()
          Note the same entry instance is returned each time this method is called.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Iterator
remove
 

Constructor Detail

IdentityMap.Entries

public IdentityMap.Entries(IdentityMap<K,V> map)
Method Detail

next

public IdentityMap.Entry<K,V> next()
Note the same entry instance is returned each time this method is called.

Specified by:
next in interface java.util.Iterator<IdentityMap.Entry<K,V>>

hasNext

public boolean hasNext()
Specified by:
hasNext in interface java.util.Iterator<IdentityMap.Entry<K,V>>

iterator

public java.util.Iterator<IdentityMap.Entry<K,V>> iterator()
Specified by:
iterator in interface java.lang.Iterable<IdentityMap.Entry<K,V>>