Uses of Class
org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.Node
-
Packages that use AVLTree.Node Package Description org.apache.commons.math3.geometry.partitioning.utilities This package provides multidimensional ordering features for partitioning. -
-
Uses of AVLTree.Node in org.apache.commons.math3.geometry.partitioning.utilities
Fields in org.apache.commons.math3.geometry.partitioning.utilities declared as AVLTree.Node Modifier and Type Field Description private AVLTree.NodeAVLTree.Node. leftLeft sub-tree.private AVLTree.NodeAVLTree.Node. parentParent tree.private AVLTree.NodeAVLTree.Node. rightRight sub-tree.private AVLTree.NodeAVLTree. topDeprecated.Top level node.Methods in org.apache.commons.math3.geometry.partitioning.utilities that return AVLTree.Node Modifier and Type Method Description AVLTree.NodeAVLTree. getLargest()Deprecated.Get the node whose element is the largest one in the tree.(package private) AVLTree.NodeAVLTree.Node. getLargest()Get the node whose element is the largest one in the tree rooted at this node.AVLTree.NodeAVLTree.Node. getNext()Get the node containing the next larger or equal element.AVLTree.NodeAVLTree. getNotLarger(T reference)Deprecated.Get the node whose element is not larger than the reference object.AVLTree.NodeAVLTree. getNotSmaller(T reference)Deprecated.Get the node whose element is not smaller than the reference object.AVLTree.NodeAVLTree.Node. getPrevious()Get the node containing the next smaller or equal element.AVLTree.NodeAVLTree. getSmallest()Deprecated.Get the node whose element is the smallest one in the tree.(package private) AVLTree.NodeAVLTree.Node. getSmallest()Get the node whose element is the smallest one in the tree rooted at this node.Constructors in org.apache.commons.math3.geometry.partitioning.utilities with parameters of type AVLTree.Node Constructor Description Node(T element, AVLTree.Node parent)Build a node for a specified element.
-