If given the following tree structure or one similar to it:
I would want t
something like this should do it
public void traverse(){ for(Child child : this.children){ child.traverse(); } System.out.print(this.value); }