| Package | Description |
|---|---|
| org.processmining.experttraceclustering.types |
| Modifier and Type | Class and Description |
|---|---|
class |
ClusterTreeInnerNode
This class represents a node of a ClusterTree which has both a left and right
child.
|
class |
ClusterTreeLeaf
A leaf of a ClusterTree.
|
class |
ClusterTreeRoot
This class describes the root node of a ClusterTree.
|
| Modifier and Type | Method and Description |
|---|---|
ClusterTreeNode |
ClusterTreeInnerNode.getLeft() |
ClusterTreeNode |
ClusterTreeLeaf.getLeft() |
ClusterTreeNode |
ClusterTreeNode.getLeft()
Return the left child of this node, or null if there is no such child.
|
ClusterTreeNode |
ClusterTreeInnerNode.getRight() |
ClusterTreeNode |
ClusterTreeLeaf.getRight() |
ClusterTreeNode |
ClusterTreeNode.getRight()
Return the right child of this node, or null if there is no such child.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ClusterTreeInnerNode.setLeft(ClusterTreeNode left)
Change the left child of the node to the given one.
|
void |
ClusterTreeInnerNode.setRight(ClusterTreeNode right)
Change the right child of the node to the given one.
|