Package org.parboiled.trees
Interface BinaryTreeNode<T extends BinaryTreeNode<T>>
-
- Type Parameters:
T- the actual implementation type of this tree node
- All Known Subinterfaces:
MutableBinaryTreeNode<T>
- All Known Implementing Classes:
ImmutableBinaryTreeNode,MutableBinaryTreeNodeImpl
public interface BinaryTreeNode<T extends BinaryTreeNode<T>> extends TreeNode<T>
ATreeNodespecialization with only two child nodes, left and right.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tleft()Returns the left sub node.Tright()Returns the right sub node.-
Methods inherited from interface org.parboiled.trees.GraphNode
getChildren
-
-