Interface ITreeNode<T>
-
- Type Parameters:
T- the type of the payload
- All Known Implementing Classes:
TreeNode
public interface ITreeNode<T>A node in a tree.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(ITreeVisitor<T> visitor)List<ITreeNode<T>>getChildren()ITreeNode<T>getParent()TgetValue()
-