T - the actual implementation type of this tree nodepublic interface BinaryTreeNode<T extends BinaryTreeNode<T>> extends TreeNode<T>
TreeNode specialization with only two child nodes, left and right.| Modifier and Type | Method and Description |
|---|---|
T |
left()
Returns the left sub node.
|
T |
right()
Returns the right sub node.
|
getChildren