Package org.apache.uima.internal.util
Class BinaryTree
- java.lang.Object
-
- org.apache.uima.internal.util.BinaryTree
-
public class BinaryTree extends Object
Simple binary tree class.
-
-
Constructor Summary
Constructors Constructor Description BinaryTree()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BinaryTreegetLeftDtr()BinaryTreegetMother()BinaryTreegetRightDtr()ObjectgetValue()BinaryTreenewLeftDtr()BinaryTreenewRightDtr()voidsetValue(Object value)
-
-
-
Method Detail
-
setValue
public void setValue(Object value)
-
newLeftDtr
public BinaryTree newLeftDtr()
-
newRightDtr
public BinaryTree newRightDtr()
-
getLeftDtr
public BinaryTree getLeftDtr()
-
getRightDtr
public BinaryTree getRightDtr()
-
getMother
public BinaryTree getMother()
-
getValue
public Object getValue()
-
-