Package ghidra.generic.util.datastruct
Class DynamicValueSortedTreeMap.ValueListIterator
- java.lang.Object
-
- ghidra.generic.util.datastruct.DynamicValueSortedTreeMap.ValueListIterator
-
- All Implemented Interfaces:
java.util.Iterator<V>,java.util.ListIterator<V>
- Enclosing class:
- DynamicValueSortedTreeMap<K,V>
protected class DynamicValueSortedTreeMap.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 voidadd(V e)booleanhasNext()booleanhasPrevious()Vnext()intnextIndex()Vprevious()intpreviousIndex()voidremove()voidset(V e)
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfacejava.util.ListIterator<V>
-
next
public V next()
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfacejava.util.ListIterator<V>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfacejava.util.ListIterator<V>
-
remove
public void remove()
-
-