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:
java.util.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
Fields Modifier and Type Field Description static OrderedMapIterator
INSTANCE
Singleton instance of the iterator.
-
Constructor Summary
Constructors Modifier Constructor Description protected
EmptyOrderedMapIterator()
Constructor.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <K,V>
OrderedMapIterator<K,V>emptyOrderedMapIterator()
Get a typed instance of the iterator.-
Methods inherited from class org.apache.commons.collections4.iterators.AbstractEmptyMapIterator
getKey, getValue, setValue
-
Methods inherited from class org.apache.commons.collections4.iterators.AbstractEmptyIterator
add, hasNext, hasPrevious, next, nextIndex, previous, previousIndex, remove, reset, set
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.commons.collections4.MapIterator
getKey, getValue, hasNext, next, remove, setValue
-
Methods inherited from interface org.apache.commons.collections4.OrderedMapIterator
hasPrevious, previous
-
Methods inherited from interface org.apache.commons.collections4.ResettableIterator
reset
-
-
-
-
Field Detail
-
INSTANCE
public static final OrderedMapIterator INSTANCE
Singleton instance of the iterator.- Since:
- 3.1
-
-
Method Detail
-
emptyOrderedMapIterator
public static <K,V> OrderedMapIterator<K,V> emptyOrderedMapIterator()
Get a typed instance of the iterator.- Type Parameters:
K
- the key typeV
- the value type- Returns:
OrderedMapIterator
<K, V>
-
-