public abstract class AbstractTree<K,V> extends java.lang.Object implements Tree<K,V>
| Modifier | Constructor and Description |
|---|---|
protected |
AbstractTree(Tree<K,V> left,
Tree<K,V> right,
V value) |
| Modifier and Type | Method and Description |
|---|---|
int |
count() |
abstract K |
getKey(KeyFunction<K,V> keyFunction) |
Tree<K,V> |
getLeft() |
Tree<K,V> |
getRight() |
V |
getValue() |
public abstract K getKey(KeyFunction<K,V> keyFunction)