Uses of Class
org.apache.uima.internal.util.rb_trees.IntRBTNode
-
Packages that use IntRBTNode Package Description org.apache.uima.internal.util.rb_trees -
-
Uses of IntRBTNode in org.apache.uima.internal.util.rb_trees
Fields in org.apache.uima.internal.util.rb_trees declared as IntRBTNode Modifier and Type Field Description (package private) IntRBTNode
IntRedBlackTree.IntRBTIterator. current
(package private) IntRBTNode
IntRBTNode. left
private IntRBTNode
IntRBTNode. parent
(package private) IntRBTNode
IntRBTNode. right
(package private) IntRBTNode
IntRedBlackTree. root
Methods in org.apache.uima.internal.util.rb_trees that return IntRBTNode Modifier and Type Method Description (package private) IntRBTNode
IntRBTNode. copyNode(IntRBTNode parent)
(package private) static IntRBTNode
IntRBTNode. copyNode(IntRBTNode parent, IntRBTNode n)
(package private) static IntRBTNode
IntRBTNode. find(IntRBTNode x, int key)
Find a node with a certain key.private IntRBTNode
IntRedBlackTree. getFirstNode()
private static IntRBTNode
IntRBTNode. leftOf(IntRBTNode x)
private static IntRBTNode
IntRBTNode. rightOf(IntRBTNode x)
(package private) IntRBTNode
IntRBTNode. successor()
Find the successor node to this.Methods in org.apache.uima.internal.util.rb_trees with parameters of type IntRBTNode Modifier and Type Method Description private static boolean
IntRBTNode. colorOf(IntRBTNode x)
(package private) IntRBTNode
IntRBTNode. copyNode(IntRBTNode parent)
(package private) static IntRBTNode
IntRBTNode. copyNode(IntRBTNode parent, IntRBTNode n)
(package private) static void
IntRBTNode. delete(IntRedBlackTree tree, IntRBTNode z)
Delete a given node from the tree.private static void
IntRBTNode. deleteFixup(IntRedBlackTree tree, IntRBTNode x)
From CLR.private static void
IntRBTNode. deleteFixupNull(IntRedBlackTree tree, IntRBTNode 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 IntRBTNode
IntRBTNode. find(IntRBTNode x, int key)
Find a node with a certain key.(package private) static boolean
IntRBTNode. insert(IntRedBlackTree tree, IntRBTNode x)
Insert a node into a tree.private static IntRBTNode
IntRBTNode. leftOf(IntRBTNode x)
private boolean
IntRedBlackTree. put(IntRBTNode node)
Insert a IntRBTNode into the tree.private static IntRBTNode
IntRBTNode. rightOf(IntRBTNode x)
private static void
IntRBTNode. setColor(IntRBTNode x, boolean c)
private static boolean
IntRBTNode. treeInsert(IntRedBlackTree tree, IntRBTNode z)
Auxiliary function for insert().Constructors in org.apache.uima.internal.util.rb_trees with parameters of type IntRBTNode Constructor Description IntRBTNode(int key, boolean color, IntRBTNode parent, IntRBTNode left, IntRBTNode right, int element)
The real constructor, used only internally.
-