Package ghidra.generic.util.datastruct
Class RestrictedValueSortedMap.RestrictedEntryListIterator
- java.lang.Object
-
- ghidra.generic.util.datastruct.RestrictedValueSortedMap.RestrictedEntryListIterator
-
- All Implemented Interfaces:
java.util.Iterator<java.util.Map.Entry<K,V>>,java.util.ListIterator<java.util.Map.Entry<K,V>>
- Enclosing class:
- RestrictedValueSortedMap<K,V>
public class RestrictedValueSortedMap.RestrictedEntryListIterator extends java.lang.Object implements java.util.ListIterator<java.util.Map.Entry<K,V>>A list iterator suitable forList.listIterator(), etc., on the entries of aRestrictedValueSortedMap
-
-
Constructor Summary
Constructors Constructor Description RestrictedEntryListIterator()Construct an iteratorRestrictedEntryListIterator(int start)Construct an iterator starting at a given index of the sub list.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(java.util.Map.Entry<K,V> e)booleanhasNext()booleanhasPrevious()java.util.Map.Entry<K,V>next()intnextIndex()java.util.Map.Entry<K,V>previous()intpreviousIndex()voidremove()voidset(java.util.Map.Entry<K,V> e)
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
-
hasPrevious
public boolean hasPrevious()
-
nextIndex
public int nextIndex()
-
previousIndex
public int previousIndex()
-
remove
public void remove()
-
-