Class BinaryTreeNode<K, V, NODE>

Represents a node in a binary tree.

Type Parameters

  • K = any
  • V = any

    The type of data stored in the node.

  • NODE extends BinaryTreeNode<K, V, NODE> = BinaryTreeNode<K, V, BinaryTreeNodeNested<K, V>>

    The type of the family relationship in the binary tree.

Hierarchy (view full)