public class TreeNode<T extends TreeNode<T,E>,E>
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
T |
child00
top-left
|
T |
child01
bottom-left
|
T |
child10
top-right
|
T |
child11
bottom-right
|
E |
item
payload
|
T |
parent |
| Constructor and Description |
|---|
TreeNode() |
| Modifier and Type | Method and Description |
|---|---|
E |
child(int i) |
boolean |
isRoot() |
E |
parent() |
public E item