|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BinaryTreeNode | |
---|---|
org.knime.base.node.viz.plotter.dendrogram | Contains all classes necessary to visualize a hierachical clustering result
represented by a DendrogramNode . |
Uses of BinaryTreeNode in org.knime.base.node.viz.plotter.dendrogram |
---|
Methods in org.knime.base.node.viz.plotter.dendrogram that return BinaryTreeNode | |
---|---|
BinaryTreeNode<T> |
BinaryTreeNode.getLeftChild()
|
BinaryTreeNode<T> |
BinaryTreeNode.getParent()
|
BinaryTreeNode<T> |
BinaryTreeNode.getRightChild()
|
Methods in org.knime.base.node.viz.plotter.dendrogram that return types with arguments of type BinaryTreeNode | |
---|---|
List<BinaryTreeNode<T>> |
BinaryTree.getNodes(BinaryTree.Traversal traversal)
Returns the nodes of this tree as a ordered list, where the order depends on the traversal type defined in the enum BinaryTree.Traversal . |
Methods in org.knime.base.node.viz.plotter.dendrogram with parameters of type BinaryTreeNode | |
---|---|
void |
BinaryTree.addNode(BinaryTreeNode<T> newNode)
Adds a node to this tree. |
void |
BinaryTreeNode.setLeftChild(BinaryTreeNode<T> leftChild)
The parent of the node can be set only once, if the left child is already set an IllegalArgumentException is thrown. |
void |
BinaryTreeNode.setParent(BinaryTreeNode<T> parent)
The parent of the node can be set only once, if the parent is already set an IllegalArgumentException is thrown. |
void |
BinaryTreeNode.setRightChild(BinaryTreeNode<T> rightChild)
* The parent of the node can be set only once, if the right child is already set an IllegalArgumentException is thrown. |
Constructors in org.knime.base.node.viz.plotter.dendrogram with parameters of type BinaryTreeNode | |
---|---|
BinaryTree(BinaryTreeNode<T> root)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |