Uses of Class
org.apache.commons.collections.DoubleOrderedMap.Node
Packages that use DoubleOrderedMap.Node
Package
Description
This package contains the interfaces and utilities shared across all the subpackages of this component.
-
Uses of DoubleOrderedMap.Node in org.apache.commons.collections
Fields in org.apache.commons.collections declared as DoubleOrderedMap.NodeModifier and TypeFieldDescriptionprotected DoubleOrderedMap.Node
DoubleOrderedMap.DoubleOrderedMapIterator.lastReturnedNode
private DoubleOrderedMap.Node[]
DoubleOrderedMap.Node.leftNode
private DoubleOrderedMap.Node
DoubleOrderedMap.DoubleOrderedMapIterator.nextNode
private DoubleOrderedMap.Node[]
DoubleOrderedMap.Node.parentNode
private DoubleOrderedMap.Node[]
DoubleOrderedMap.Node.rightNode
private DoubleOrderedMap.Node[]
DoubleOrderedMap.rootNode
Deprecated.Methods in org.apache.commons.collections that return DoubleOrderedMap.NodeModifier and TypeMethodDescriptionprivate static DoubleOrderedMap.Node
DoubleOrderedMap.getGrandParent
(DoubleOrderedMap.Node node, int index) Deprecated.get a node's grandparent.private DoubleOrderedMap.Node
DoubleOrderedMap.Node.getLeft
(int index) get the left nodeprivate static DoubleOrderedMap.Node
DoubleOrderedMap.getLeftChild
(DoubleOrderedMap.Node node, int index) Deprecated.get a node's left child.private static DoubleOrderedMap.Node
DoubleOrderedMap.getParent
(DoubleOrderedMap.Node node, int index) Deprecated.get a node's parent.private DoubleOrderedMap.Node
DoubleOrderedMap.Node.getParent
(int index) get the parent nodeprivate DoubleOrderedMap.Node
DoubleOrderedMap.Node.getRight
(int index) get the right nodeprivate static DoubleOrderedMap.Node
DoubleOrderedMap.getRightChild
(DoubleOrderedMap.Node node, int index) Deprecated.get a node's right child.private static DoubleOrderedMap.Node
DoubleOrderedMap.leastNode
(DoubleOrderedMap.Node node, int index) Deprecated.find the least node from a given node.private DoubleOrderedMap.Node
DoubleOrderedMap.lookup
(Comparable data, int index) Deprecated.do the actual lookup of a piece of dataprivate DoubleOrderedMap.Node
DoubleOrderedMap.nextGreater
(DoubleOrderedMap.Node node, int index) Deprecated.get the next larger node from the specified nodeMethods in org.apache.commons.collections with parameters of type DoubleOrderedMap.NodeModifier and TypeMethodDescriptionprivate static void
DoubleOrderedMap.copyColor
(DoubleOrderedMap.Node from, DoubleOrderedMap.Node to, int index) Deprecated.copy the color from one node to another, dealing with the fact that one or both nodes may, in fact, be nullprivate void
DoubleOrderedMap.Node.copyColor
(DoubleOrderedMap.Node node, int index) make this node the same color as anotherprivate void
DoubleOrderedMap.doRedBlackDelete
(DoubleOrderedMap.Node deletedNode) Deprecated.complicated red-black delete stuff.private void
DoubleOrderedMap.doRedBlackDeleteFixup
(DoubleOrderedMap.Node replacementNode, int index) Deprecated.complicated red-black delete stuff.private void
DoubleOrderedMap.doRedBlackInsert
(DoubleOrderedMap.Node insertedNode, int index) Deprecated.complicated red-black insert stuff.private static DoubleOrderedMap.Node
DoubleOrderedMap.getGrandParent
(DoubleOrderedMap.Node node, int index) Deprecated.get a node's grandparent.private static DoubleOrderedMap.Node
DoubleOrderedMap.getLeftChild
(DoubleOrderedMap.Node node, int index) Deprecated.get a node's left child.private static DoubleOrderedMap.Node
DoubleOrderedMap.getParent
(DoubleOrderedMap.Node node, int index) Deprecated.get a node's parent.private static DoubleOrderedMap.Node
DoubleOrderedMap.getRightChild
(DoubleOrderedMap.Node node, int index) Deprecated.get a node's right child.private void
DoubleOrderedMap.insertValue
(DoubleOrderedMap.Node newNode) Deprecated.insert a node by its valueprivate static boolean
DoubleOrderedMap.isBlack
(DoubleOrderedMap.Node node, int index) Deprecated.is the specified black red? if the node does not exist, sure, it's black, thank youprivate static boolean
DoubleOrderedMap.isLeftChild
(DoubleOrderedMap.Node node, int index) Deprecated.is this node its parent's left child? mind you, the node, or its parent, may not exist.private static boolean
DoubleOrderedMap.isRed
(DoubleOrderedMap.Node node, int index) Deprecated.is the specified node red? if the node does not exist, no, it's black, thank youprivate static boolean
DoubleOrderedMap.isRightChild
(DoubleOrderedMap.Node node, int index) Deprecated.is this node its parent's right child? mind you, the node, or its parent, may not exist.private static DoubleOrderedMap.Node
DoubleOrderedMap.leastNode
(DoubleOrderedMap.Node node, int index) Deprecated.find the least node from a given node.private static void
DoubleOrderedMap.makeBlack
(DoubleOrderedMap.Node node, int index) Deprecated.force a node (if it exists) blackprivate static void
DoubleOrderedMap.makeRed
(DoubleOrderedMap.Node node, int index) Deprecated.force a node (if it exists) redprivate DoubleOrderedMap.Node
DoubleOrderedMap.nextGreater
(DoubleOrderedMap.Node node, int index) Deprecated.get the next larger node from the specified nodeprivate void
DoubleOrderedMap.rotateLeft
(DoubleOrderedMap.Node node, int index) Deprecated.do a rotate left.private void
DoubleOrderedMap.rotateRight
(DoubleOrderedMap.Node node, int index) Deprecated.do a rotate right.private void
DoubleOrderedMap.Node.setLeft
(DoubleOrderedMap.Node node, int index) Set this node's left nodeprivate void
DoubleOrderedMap.Node.setParent
(DoubleOrderedMap.Node node, int index) Set this node's parent nodeprivate void
DoubleOrderedMap.Node.setRight
(DoubleOrderedMap.Node node, int index) Set this node's right nodeprivate void
DoubleOrderedMap.Node.swapColors
(DoubleOrderedMap.Node node, int index) exchange colors with another nodeprivate void
DoubleOrderedMap.swapPosition
(DoubleOrderedMap.Node x, DoubleOrderedMap.Node y, int index) Deprecated.swap two nodes (except for their content), taking care of special cases where one is the other's parent ...