Package ghidra.generic.util.datastruct
Class RestrictedValueSortedMap.RestrictedValueListIterator
- java.lang.Object
-
- ghidra.generic.util.datastruct.RestrictedValueSortedMap.RestrictedValueListIterator
-
- All Implemented Interfaces:
java.util.Iterator<V>
,java.util.ListIterator<V>
- Enclosing class:
- RestrictedValueSortedMap<K,V>
public class RestrictedValueSortedMap.RestrictedValueListIterator extends java.lang.Object implements java.util.ListIterator<V>
A list iterator suitable forList.listIterator()
, etc., on the values of aRestrictedValueSortedMap
-
-
Field Summary
Fields Modifier and Type Field Description protected RestrictedValueSortedMap.RestrictedEntryListIterator
wit
-
Constructor Summary
Constructors Constructor Description RestrictedValueListIterator()
Construct an iteratorRestrictedValueListIterator(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(V e)
boolean
hasNext()
boolean
hasPrevious()
V
next()
int
nextIndex()
V
previous()
int
previousIndex()
void
remove()
void
set(V e)
-
-
-
Field Detail
-
wit
protected final RestrictedValueSortedMap.RestrictedEntryListIterator wit
-
-
Method Detail
-
hasNext
public boolean hasNext()
-
next
public V next()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfacejava.util.ListIterator<V>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfacejava.util.ListIterator<V>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfacejava.util.ListIterator<V>
-
remove
public void remove()
-
-