See: Description
Interface | Description |
---|---|
TreeIterationStrategy<E> |
A strategy of how to navigate through a tree (i.e.
|
Class | Description |
---|---|
TreeStreams |
Creates streams of nodes.
|
Its main purpose is to enable easy creation of Stream
s of nodes over tree-like data
structures without requiring them to implement a specific interface. Instead of utilizing such an interface to
navigate the tree, a TreeNavigator
is used.
Use TreeStreams
to create such streams. If the existing
iteration strategies (like, e.g., depth-first search) do not suffice, a
TreeIterationStrategy
can be specified. The
strategy might make use of a TreeNavigator
.
This documentation is licensed under CC-BY 4.0, attributed to Nicolai Parlog from CodeFX.