Package com.esotericsoftware.kryo.util
Class IdentityMap.Entries<K,V>
- java.lang.Object
-
- com.esotericsoftware.kryo.util.IdentityMap.Entries<K,V>
-
- All Implemented Interfaces:
Iterable<IdentityMap.Entry<K,V>>
,Iterator<IdentityMap.Entry<K,V>>
- Enclosing class:
- IdentityMap<K,V>
public static class IdentityMap.Entries<K,V> extends Object implements Iterable<IdentityMap.Entry<K,V>>, Iterator<IdentityMap.Entry<K,V>>
-
-
Constructor Summary
Constructors Constructor Description Entries(IdentityMap<K,V> map)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
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.lang.Iterable
forEach, spliterator
-
Methods inherited from interface java.util.Iterator
forEachRemaining, remove
-
-
-
-
Constructor Detail
-
Entries
public 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.
-
-