/*
 * Copyright 2004-2019 H2 Group. Multiple-Licensed under the MPL 2.0,
 * and the EPL 1.0 (http://h2database.com/html/license.html).
 * Initial Developer: H2 Group
 */
package org.h2.index;

import org.h2.result.Row;

Represents a index node of a tree index.
/** * Represents a index node of a tree index. */
class TreeNode {
The balance. For more information, see the AVL tree documentation.
/** * The balance. For more information, see the AVL tree documentation. */
int balance;
The left child node or null.
/** * The left child node or null. */
TreeNode left;
The right child node or null.
/** * The right child node or null. */
TreeNode right;
The parent node or null if this is the root node.
/** * The parent node or null if this is the root node. */
TreeNode parent;
The row.
/** * The row. */
final Row row; TreeNode(Row row) { this.row = row; }
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
/** * Check if this node is the left child of its parent. This method returns * true if this is the root node. * * @return true if this node is the root or a left child */
boolean isFromLeft() { return parent == null || parent.left == this; } }