public interface Tree
Modifier and Type | Method and Description |
---|---|
Tree |
getChild(int i)
If there are children, get the ith value indexed from 0.
|
int |
getChildCount()
How many children are there? If there is none, then this
node represents a leaf node.
|
Tree |
getParent()
The parent of this node.
|
Object |
getPayload()
This method returns whatever object represents the data at this note.
|
String |
toStringTree()
Print out a whole tree, not just a node, in LISP format
(root child1 ..
|
Tree getParent()
Object getPayload()
Tree getChild(int i)
int getChildCount()
String toStringTree()
Copyright © 2012. All Rights Reserved.