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