Class TreeIterator<K,V,R>
- java.lang.Object
-
- com.github.andrewoma.dexx.collection.internal.redblack.TreeIterator<K,V,R>
-
- All Implemented Interfaces:
java.util.Iterator<R>
- Direct Known Subclasses:
EntriesIterator
,KeysIterator
,ValuesIterator
abstract class TreeIterator<K,V,R> extends java.lang.Object implements java.util.Iterator<R>
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
TreeIterator(Tree<K,V> tree)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description private Tree<K,V>
findNext(Tree<K,V> tree)
boolean
hasNext()
R
next()
protected abstract R
nextResult(Tree<K,V> tree)
private Tree<K,V>
popPath()
private void
pushPath(Tree<K,V> tree)
void
remove()
-