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 void
add(java.util.Map.Entry<K,V> e)
boolean
hasNext()
boolean
hasPrevious()
java.util.Map.Entry<K,V>
next()
int
nextIndex()
java.util.Map.Entry<K,V>
previous()
int
previousIndex()
void
remove()
void
set(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()
-
-