public abstract static class Tree.IterationOrder extends Object
Modifier and Type | Field and Description |
---|---|
static Tree.IterationOrder |
BreadthFirst
A breadth first iteration of the tree, starting from the specified startnode.
|
static Tree.IterationOrder |
InOrder
A depth first, left to right, in order iteration starting from the specified startnode.
|
static Tree.IterationOrder |
PostOrder
A depth first, left to right, post order iteration starting from the specified startnode
|
static Tree.IterationOrder |
PreOrder
A depth first, left to right, pre order iteration starting from the specified startnode.
|
public static final Tree.IterationOrder BreadthFirst
public static final Tree.IterationOrder PreOrder
public static final Tree.IterationOrder InOrder
public static final Tree.IterationOrder PostOrder