Uses of Class
org.apache.uima.internal.util.rb_trees.RBTNode
Packages that use RBTNode
-
Uses of RBTNode in org.apache.uima.internal.util.rb_trees
Fields in org.apache.uima.internal.util.rb_trees declared as RBTNodeModifier and TypeFieldDescriptionRedBlackTree.RBTIterator.current
RBTNode.left
RBTNode.parent
RBTNode.right
RedBlackTree.root
Methods in org.apache.uima.internal.util.rb_trees that return RBTNodeModifier and TypeMethodDescription(package private) static final <T> RBTNode
<T> Find a node with a certain key.RedBlackTree.getFirstNode()
private static final <T> RBTNode
<T> private static final <T> RBTNode
<T> RBTNode.successor()
Find the successor node to this.Methods in org.apache.uima.internal.util.rb_trees with parameters of type RBTNodeModifier and TypeMethodDescriptionprivate static final <T> boolean
(package private) static final <T> void
RBTNode.delete
(RedBlackTree<T> tree, RBTNode<T> z) Delete a given node from the tree.private static final <T> void
RBTNode.deleteFixup
(RedBlackTree<T> tree, RBTNode<T> x) From CLR.private static final <T> void
RBTNode.deleteFixupNull
(RedBlackTree<T> tree, RBTNode<T> x) Like deleteFixup(), only that the node we should be working on is null, and we actually hand in the node's mother.(package private) static final <T> RBTNode
<T> Find a node with a certain key.(package private) static final <T> boolean
RBTNode.insert
(RedBlackTree<T> tree, RBTNode<T> x) Insert a node into a tree.private static final <T> RBTNode
<T> private final boolean
Insert a RBTNode into the tree.private static final <T> RBTNode
<T> private static final <T> void
private static final <T> boolean
RBTNode.treeInsert
(RedBlackTree<T> tree, RBTNode<T> z) Auxiliary function for insert().Constructors in org.apache.uima.internal.util.rb_trees with parameters of type RBTNode