Package com.esotericsoftware.kryo.util
Class ObjectMap.Entries<K,V>
- java.lang.Object
-
- com.esotericsoftware.kryo.util.ObjectMap.Entries<K,V>
-
- All Implemented Interfaces:
java.lang.Iterable<ObjectMap.Entry<K,V>>
,java.util.Iterator<ObjectMap.Entry<K,V>>
public static class ObjectMap.Entries<K,V> extends java.lang.Object implements java.lang.Iterable<ObjectMap.Entry<K,V>>, java.util.Iterator<ObjectMap.Entry<K,V>>
-
-
Field Summary
Fields Modifier and Type Field Description protected ObjectMap.Entry<K,V>
entry
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
java.util.Iterator<ObjectMap.Entry<K,V>>
iterator()
ObjectMap.Entry<K,V>
next()
Note the same entry instance is returned each time this method is called.
-
-
-
Field Detail
-
entry
protected ObjectMap.Entry<K,V> entry
-
-
Method Detail
-
next
public ObjectMap.Entry<K,V> next()
Note the same entry instance is returned each time this method is called.- Specified by:
next
in interfacejava.util.Iterator<K>
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfacejava.util.Iterator<K>
-
iterator
public java.util.Iterator<ObjectMap.Entry<K,V>> iterator()
- Specified by:
iterator
in interfacejava.lang.Iterable<K>
-
-