(package private) TreeList.AVLNode<E> |
TreeList.AVLNode.get(int index) |
Locate the element with the given index relative to the
offset of the parent of this node.
|
(package private) TreeList.AVLNode<E> |
TreeList.AVLNode.insert(int index,
E obj) |
Inserts a node at the position index.
|
(package private) TreeList.AVLNode<E> |
TreeList.AVLNode.next() |
Gets the next node in the list after this one.
|
(package private) TreeList.AVLNode<E> |
TreeList.AVLNode.previous() |
Gets the node in the list before this one.
|
(package private) TreeList.AVLNode<E> |
TreeList.AVLNode.remove(int index) |
Removes the node at a given position.
|