Package org.jibx.binding.util
Class MultipleValueMap.MultipleIterator
- java.lang.Object
-
- org.jibx.binding.util.MultipleValueMap.MultipleIterator
-
- All Implemented Interfaces:
Iterator
- Enclosing class:
- MultipleValueMap
public class MultipleValueMap.MultipleIterator extends Object implements Iterator
Iterator for only the multiple-valued keys in the map.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedMultipleIterator()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Check for another multiple-valued key present.Objectnext()Get the next multiple-valued key in map.voidremove()Remove current multiple-valued key.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
Check for another multiple-valued key present.
-
next
public Object next()
Get the next multiple-valued key in map. This returns the current next key, advancing to the next next key.
-
-