Class TreeBidiMap.InverseViewMapEntryIterator
- java.lang.Object
-
- org.apache.commons.collections4.bidimap.TreeBidiMap.ViewIterator
-
- org.apache.commons.collections4.bidimap.TreeBidiMap.InverseViewMapEntryIterator
-
- All Implemented Interfaces:
java.util.Iterator<java.util.Map.Entry<V,K>>
,OrderedIterator<java.util.Map.Entry<V,K>>
- Enclosing class:
- TreeBidiMap<K extends java.lang.Comparable<K>,V extends java.lang.Comparable<V>>
class TreeBidiMap.InverseViewMapEntryIterator extends TreeBidiMap.ViewIterator implements OrderedIterator<java.util.Map.Entry<V,K>>
An iterator over the inverse map entries.
-
-
Field Summary
-
Fields inherited from class org.apache.commons.collections4.bidimap.TreeBidiMap.ViewIterator
lastReturnedNode
-
-
Constructor Summary
Constructors Constructor Description InverseViewMapEntryIterator()
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private java.util.Map.Entry<V,K>
createEntry(TreeBidiMap.Node<K,V> node)
java.util.Map.Entry<V,K>
next()
java.util.Map.Entry<V,K>
previous()
Gets the previous element from the container.-
Methods inherited from class org.apache.commons.collections4.bidimap.TreeBidiMap.ViewIterator
hasNext, hasPrevious, navigateNext, navigatePrevious, remove
-
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.OrderedIterator
hasPrevious
-
-
-
-
Method Detail
-
previous
public java.util.Map.Entry<V,K> previous()
Description copied from interface:OrderedIterator
Gets the previous element from the container.
-
createEntry
private java.util.Map.Entry<V,K> createEntry(TreeBidiMap.Node<K,V> node)
-
-