Package org.hipparchus.util
Class OpenIntToDoubleHashMap.Iterator
- java.lang.Object
-
- org.hipparchus.util.AbstractOpenIntHashMap.BaseIterator
-
- org.hipparchus.util.OpenIntToDoubleHashMap.Iterator
-
- Enclosing class:
- OpenIntToDoubleHashMap
public class OpenIntToDoubleHashMap.Iterator extends AbstractOpenIntHashMap.BaseIterator
Iterator class for the map.
-
-
Constructor Summary
Constructors Constructor Description Iterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
value()
Get the value of current entry.-
Methods inherited from class org.hipparchus.util.AbstractOpenIntHashMap.BaseIterator
advance, getCurrent, hasNext, key
-
-
-
-
Method Detail
-
value
public double value() throws ConcurrentModificationException, NoSuchElementException
Get the value of current entry.- Returns:
- value of current entry
- Throws:
ConcurrentModificationException
- if the map is modified during iterationNoSuchElementException
- if there is no element left in the map
-
-