Uses of Class
com.google.common.graph.Traverser
-
Packages that use Traverser Package Description com.google.common.graph An API for representing graph (node and edge) data.com.google.common.io Utility methods and classes for I/O; for example input streams, output streams, readers, writers, and files. -
-
Uses of Traverser in com.google.common.graph
Methods in com.google.common.graph that return Traverser Modifier and Type Method Description static <N> Traverser<N>
Traverser. forGraph(SuccessorsFunction<N> graph)
Creates a new traverser for the given generalgraph
.static <N> Traverser<N>
Traverser. forTree(SuccessorsFunction<N> tree)
Creates a new traverser for a directed acyclic graph that has at most one path from the start node(s) to any node reachable from the start node(s), and has no paths from any start node to any other start node, such as a tree or forest. -
Uses of Traverser in com.google.common.io
Methods in com.google.common.io that return Traverser Modifier and Type Method Description static Traverser<java.io.File>
Files. fileTraverser()
Returns aTraverser
instance for the file and directory tree.static Traverser<java.nio.file.Path>
MoreFiles. fileTraverser()
Returns aTraverser
instance for the file and directory tree.
-