Class EmptyMapIterator<K,V>
java.lang.Object
org.apache.commons.collections4.iterators.AbstractEmptyIterator<K>
org.apache.commons.collections4.iterators.AbstractEmptyMapIterator<K,V>
org.apache.commons.collections4.iterators.EmptyMapIterator<K,V>
- Type Parameters:
K- the type of keysV- the type of mapped values
- All Implemented Interfaces:
Iterator<K>,MapIterator<K,,V> ResettableIterator<K>
public class EmptyMapIterator<K,V>
extends AbstractEmptyMapIterator<K,V>
implements MapIterator<K,V>
Provides an implementation of an empty map iterator.
- Since:
- 3.1
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <K,V> MapIterator <K, V> Gets a typed instance of the iterator.Methods inherited from class org.apache.commons.collections4.iterators.AbstractEmptyMapIterator
getKey, getValue, setValueMethods inherited from class org.apache.commons.collections4.iterators.AbstractEmptyIterator
add, hasNext, hasPrevious, next, nextIndex, previous, previousIndex, remove, reset, setMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining
-
Field Details
-
INSTANCE
Singleton instance of the iterator.- Since:
- 3.1
-
-
Constructor Details
-
EmptyMapIterator
protected EmptyMapIterator()Constructs a new instance.
-
-
Method Details
-
emptyMapIterator
Gets a typed instance of the iterator.- Type Parameters:
K- the key typeV- the value type- Returns:
MapIterator<K, V>
-