Package com.esotericsoftware.kryo.util
Class ObjectMap.Values<V>
- java.lang.Object
-
- com.esotericsoftware.kryo.util.ObjectMap.Values<V>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
java.util.Iterator<V>
iterator()
V
next()
java.util.ArrayList<V>
toArray()
Returns a new array containing the remaining values.void
toArray(java.util.ArrayList<V> array)
Adds the remaining values to the specified array.
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfacejava.util.Iterator<V>
-
iterator
public java.util.Iterator<V> iterator()
- Specified by:
iterator
in interfacejava.lang.Iterable<V>
-
toArray
public java.util.ArrayList<V> toArray()
Returns a new array containing the remaining values.
-
toArray
public void toArray(java.util.ArrayList<V> array)
Adds the remaining values to the specified array.
-
-