Class EmptyOrderedMapIterator<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.EmptyOrderedMapIterator<K,V>
- Type Parameters:
K- the type of keysV- the type of mapped values
- All Implemented Interfaces:
Iterator<K>, MapIterator<K,V>, OrderedIterator<K>, OrderedMapIterator<K, V>, ResettableIterator<K>
public class EmptyOrderedMapIterator<K,V>
extends AbstractEmptyMapIterator<K,V>
implements OrderedMapIterator<K,V>, ResettableIterator<K>
Provides an implementation of an empty ordered map iterator.
- Since:
- 3.1
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final OrderedMapIteratorSingleton instance of the iterator. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <K,V> OrderedMapIterator <K, V> Get a typed instance of the iterator.Methods inherited from class AbstractEmptyMapIterator
getKey, getValue, setValueMethods inherited from class AbstractEmptyIterator
add, hasNext, hasPrevious, next, nextIndex, previous, previousIndex, remove, reset, setMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Iterator
forEachRemainingMethods inherited from interface OrderedMapIterator
hasPrevious, previousMethods inherited from interface ResettableIterator
reset
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
EmptyOrderedMapIterator
protected EmptyOrderedMapIterator()Constructor.
-
-
Method Details
-
emptyOrderedMapIterator
Get a typed instance of the iterator.- Type Parameters:
K- the key typeV- the value type- Returns:
OrderedMapIterator<K, V>
-