Package ghidra.generic.util.datastruct
Class TreeValueSortedMap.ValueListIterator
- java.lang.Object
-
- ghidra.generic.util.datastruct.TreeValueSortedMap.ValueListIterator
-
- All Implemented Interfaces:
java.util.Iterator<V>
,java.util.ListIterator<V>
- Enclosing class:
- TreeValueSortedMap<K,V>
protected class TreeValueSortedMap.ValueListIterator extends java.lang.Object implements java.util.ListIterator<V>
An iterator of the values
-
-
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)
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfacejava.util.ListIterator<V>
-
next
public V next()
-
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()
-
-