Package org.hipparchus.util
Class OpenIntToFieldHashMap.Iterator
- java.lang.Object
-
- org.hipparchus.util.AbstractOpenIntHashMap.BaseIterator
-
- org.hipparchus.util.OpenIntToFieldHashMap.Iterator
-
- Enclosing class:
- OpenIntToFieldHashMap<T extends FieldElement<T>>
public class OpenIntToFieldHashMap.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 T
value()
Get the value of current entry.-
Methods inherited from class org.hipparchus.util.AbstractOpenIntHashMap.BaseIterator
advance, getCurrent, hasNext, key
-
-
-
-
Method Detail
-
value
public T 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
-
-