| Constructor and Description |
|---|
Node(K key) |
Node(K key,
V value) |
Node(K key,
V value,
Node<K,V> parent) |
Node(K key,
V value,
Node<K,V> parent,
List<Node<K,V>> childrens) |
| Modifier and Type | Method and Description |
|---|---|
Node<K,V> |
addChildNode(K data) |
Node<K,V> |
addChildNode(Node<K,V> child) |
Node<K,V> |
findChildNode(K data) |
Node<K,V> |
findDirectChildNode(K data) |
K |
getKey() |
V |
getValue() |
Iterator<Node<K,V>> |
iterator() |
void |
setKey(K key) |
void |
setParent(Node<K,V> parent) |
void |
setValue(V value) |
Copyright © 2013 Harald Pehl. All Rights Reserved.