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) IntRBTNodeIntRedBlackTree.IntRBTIterator. current(package private) IntRBTNodeIntRBTNode. leftprivate IntRBTNodeIntRBTNode. parent(package private) IntRBTNodeIntRBTNode. right(package private) IntRBTNodeIntRedBlackTree. rootMethods in org.apache.uima.internal.util.rb_trees that return IntRBTNode Modifier and Type Method Description (package private) IntRBTNodeIntRBTNode. copyNode(IntRBTNode parent)(package private) static IntRBTNodeIntRBTNode. copyNode(IntRBTNode parent, IntRBTNode n)(package private) static IntRBTNodeIntRBTNode. find(IntRBTNode x, int key)Find a node with a certain key.private IntRBTNodeIntRedBlackTree. getFirstNode()private static IntRBTNodeIntRBTNode. leftOf(IntRBTNode x)private static IntRBTNodeIntRBTNode. rightOf(IntRBTNode x)(package private) IntRBTNodeIntRBTNode. 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 booleanIntRBTNode. colorOf(IntRBTNode x)(package private) IntRBTNodeIntRBTNode. copyNode(IntRBTNode parent)(package private) static IntRBTNodeIntRBTNode. copyNode(IntRBTNode parent, IntRBTNode n)(package private) static voidIntRBTNode. delete(IntRedBlackTree tree, IntRBTNode z)Delete a given node from the tree.private static voidIntRBTNode. deleteFixup(IntRedBlackTree tree, IntRBTNode x)From CLR.private static voidIntRBTNode. 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 IntRBTNodeIntRBTNode. find(IntRBTNode x, int key)Find a node with a certain key.(package private) static booleanIntRBTNode. insert(IntRedBlackTree tree, IntRBTNode x)Insert a node into a tree.private static IntRBTNodeIntRBTNode. leftOf(IntRBTNode x)private booleanIntRedBlackTree. put(IntRBTNode node)Insert a IntRBTNode into the tree.private static IntRBTNodeIntRBTNode. rightOf(IntRBTNode x)private static voidIntRBTNode. setColor(IntRBTNode x, boolean c)private static booleanIntRBTNode. 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.
-