Java com.google.common.collect TreeTraverser fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.collect TreeTraverser fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.collect TreeTraverser.

The text is from its open source code.

Subclass

com.google.common.collect.TreeTraverser has subclasses.
Click this link to see all its subclasses.

Constructor

Method

FluentIterablebreadthFirstTraversal(final T root)
Returns an unmodifiable iterable over the nodes in a tree structure, using breadth-first traversal.
Iterablechildren(T root)
Returns the children of the specified node.
FluentIterablepostOrderTraversal(final T root)
Returns an unmodifiable iterable over the nodes in a tree structure, using post-order traversal.
FluentIterablepreOrderTraversal(final T root)
Returns an unmodifiable iterable over the nodes in a tree structure, using pre-order traversal.