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.NodeDoubleOrderedMap.DoubleOrderedMapIterator.lastReturnedNodeprivate DoubleOrderedMap.Node[]DoubleOrderedMap.Node.leftNodeprivate DoubleOrderedMap.NodeDoubleOrderedMap.DoubleOrderedMapIterator.nextNodeprivate DoubleOrderedMap.Node[]DoubleOrderedMap.Node.parentNodeprivate DoubleOrderedMap.Node[]DoubleOrderedMap.Node.rightNodeprivate DoubleOrderedMap.Node[]DoubleOrderedMap.rootNodeDeprecated.Methods in org.apache.commons.collections that return DoubleOrderedMap.NodeModifier and TypeMethodDescriptionprivate static DoubleOrderedMap.NodeDoubleOrderedMap.getGrandParent(DoubleOrderedMap.Node node, int index) Deprecated.get a node's grandparent.private DoubleOrderedMap.NodeDoubleOrderedMap.Node.getLeft(int index) get the left nodeprivate static DoubleOrderedMap.NodeDoubleOrderedMap.getLeftChild(DoubleOrderedMap.Node node, int index) Deprecated.get a node's left child.private static DoubleOrderedMap.NodeDoubleOrderedMap.getParent(DoubleOrderedMap.Node node, int index) Deprecated.get a node's parent.private DoubleOrderedMap.NodeDoubleOrderedMap.Node.getParent(int index) get the parent nodeprivate DoubleOrderedMap.NodeDoubleOrderedMap.Node.getRight(int index) get the right nodeprivate static DoubleOrderedMap.NodeDoubleOrderedMap.getRightChild(DoubleOrderedMap.Node node, int index) Deprecated.get a node's right child.private static DoubleOrderedMap.NodeDoubleOrderedMap.leastNode(DoubleOrderedMap.Node node, int index) Deprecated.find the least node from a given node.private DoubleOrderedMap.NodeDoubleOrderedMap.lookup(Comparable data, int index) Deprecated.do the actual lookup of a piece of dataprivate DoubleOrderedMap.NodeDoubleOrderedMap.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 voidDoubleOrderedMap.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 voidDoubleOrderedMap.Node.copyColor(DoubleOrderedMap.Node node, int index) make this node the same color as anotherprivate voidDoubleOrderedMap.doRedBlackDelete(DoubleOrderedMap.Node deletedNode) Deprecated.complicated red-black delete stuff.private voidDoubleOrderedMap.doRedBlackDeleteFixup(DoubleOrderedMap.Node replacementNode, int index) Deprecated.complicated red-black delete stuff.private voidDoubleOrderedMap.doRedBlackInsert(DoubleOrderedMap.Node insertedNode, int index) Deprecated.complicated red-black insert stuff.private static DoubleOrderedMap.NodeDoubleOrderedMap.getGrandParent(DoubleOrderedMap.Node node, int index) Deprecated.get a node's grandparent.private static DoubleOrderedMap.NodeDoubleOrderedMap.getLeftChild(DoubleOrderedMap.Node node, int index) Deprecated.get a node's left child.private static DoubleOrderedMap.NodeDoubleOrderedMap.getParent(DoubleOrderedMap.Node node, int index) Deprecated.get a node's parent.private static DoubleOrderedMap.NodeDoubleOrderedMap.getRightChild(DoubleOrderedMap.Node node, int index) Deprecated.get a node's right child.private voidDoubleOrderedMap.insertValue(DoubleOrderedMap.Node newNode) Deprecated.insert a node by its valueprivate static booleanDoubleOrderedMap.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 booleanDoubleOrderedMap.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 booleanDoubleOrderedMap.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 booleanDoubleOrderedMap.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.NodeDoubleOrderedMap.leastNode(DoubleOrderedMap.Node node, int index) Deprecated.find the least node from a given node.private static voidDoubleOrderedMap.makeBlack(DoubleOrderedMap.Node node, int index) Deprecated.force a node (if it exists) blackprivate static voidDoubleOrderedMap.makeRed(DoubleOrderedMap.Node node, int index) Deprecated.force a node (if it exists) redprivate DoubleOrderedMap.NodeDoubleOrderedMap.nextGreater(DoubleOrderedMap.Node node, int index) Deprecated.get the next larger node from the specified nodeprivate voidDoubleOrderedMap.rotateLeft(DoubleOrderedMap.Node node, int index) Deprecated.do a rotate left.private voidDoubleOrderedMap.rotateRight(DoubleOrderedMap.Node node, int index) Deprecated.do a rotate right.private voidDoubleOrderedMap.Node.setLeft(DoubleOrderedMap.Node node, int index) Set this node's left nodeprivate voidDoubleOrderedMap.Node.setParent(DoubleOrderedMap.Node node, int index) Set this node's parent nodeprivate voidDoubleOrderedMap.Node.setRight(DoubleOrderedMap.Node node, int index) Set this node's right nodeprivate voidDoubleOrderedMap.Node.swapColors(DoubleOrderedMap.Node node, int index) exchange colors with another nodeprivate voidDoubleOrderedMap.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 ...