Package org.apache.uima.internal.util
Class BinaryTree
- java.lang.Object
-
- org.apache.uima.internal.util.BinaryTree
-
public class BinaryTree extends java.lang.Object
Simple binary tree class.
-
-
Field Summary
Fields Modifier and Type Field Description private BinaryTree
left
private BinaryTree
mother
private BinaryTree
right
private java.lang.Object
value
-
Constructor Summary
Constructors Constructor Description BinaryTree()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BinaryTree
getLeftDtr()
BinaryTree
getMother()
BinaryTree
getRightDtr()
java.lang.Object
getValue()
BinaryTree
newLeftDtr()
BinaryTree
newRightDtr()
void
setValue(java.lang.Object value)
-
-
-
Field Detail
-
mother
private BinaryTree mother
-
left
private BinaryTree left
-
right
private BinaryTree right
-
value
private java.lang.Object value
-
-
Method Detail
-
setValue
public void setValue(java.lang.Object value)
-
newLeftDtr
public BinaryTree newLeftDtr()
-
newRightDtr
public BinaryTree newRightDtr()
-
getLeftDtr
public BinaryTree getLeftDtr()
-
getRightDtr
public BinaryTree getRightDtr()
-
getMother
public BinaryTree getMother()
-
getValue
public java.lang.Object getValue()
-
-