public interface TreeNode
GDK enhancements for TreeNode.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public TreeNode |
getAt(int index)Support the subscript operator for TreeNode. |
|
public Iterator<TreeNode> |
iterator()Returns an Iterator which traverses the TreeNode one node at a time. |
|
public int |
size()Provide the standard Groovy size() method for TreeNode. |
Support the subscript operator for TreeNode.
index - the index of the child node to getReturns an Iterator which traverses the TreeNode one node at a time.
Provide the standard Groovy size() method for TreeNode.