TreeNode

Represents a index node of a tree index.

Methods
boolean isFromLeft()
Check if this node is the left child of its parent.
boolean isFromLeft()
Check if this node is the left child of its parent. This method returns true if this is the root node.
Returns:
true if this node is the root or a left child

Fields
static int balance
static TreeNode left
static TreeNode parent
static TreeNode right
static Row row

balance

The balance. For more information, see the AVL tree documentation.

left

The left child node or null.

parent

The parent node or null if this is the root node.

The right child node or null.

row

The row.