Uses of Class
de.xima.fc.common.tree.TreeVisit.TreeVisitParams
-
Packages that use TreeVisit.TreeVisitParams Package Description de.xima.fc.common.tree -
-
Uses of TreeVisit.TreeVisitParams in de.xima.fc.common.tree
Methods in de.xima.fc.common.tree that return TreeVisit.TreeVisitParams Modifier and Type Method Description TreeVisit.TreeVisitParams<Node,Id>
TreeVisit.TreeVisitParams.Builder. build()
Creates a new tree visit params instance with the current settings.static <Node,Id>
TreeVisit.TreeVisitParams<Node,Id>TreeVisit.TreeVisitParams. defaults(ITreeAccessor<Node,Id> treeAccessor)
A new params instance with the given tree accessor and the default settings otherwise.static <Node,Id>
TreeVisit.TreeVisitParams<Node,Id>TreeVisit.TreeVisitParams. defaults(ITreeAccessor<Node,Id> treeAccessor)
Deprecated.static <Node,Id>
TreeVisit.TreeVisitParams<Node,Id>TreeVisit.TreeVisitParams. pathless(ITreeAccessor<Node,Id> treeAccessor)
A new params instance with the given tree accessor that does not keep track of the path and the default settings otherwise.Methods in de.xima.fc.common.tree with parameters of type TreeVisit.TreeVisitParams Modifier and Type Method Description static <Node> void
TreeVisit. visitTree(Iterable<? extends Node> startNodes, TreeVisit.TreeVisitParams<Node,?> params, TreeVisit.ITreeVisitor<Node> visitor)
Deprecated.Performs a visit operation on a tree data structure, invoking the given visitor for each node.static <Node> void
TreeVisit. visitTree(Node startNode, TreeVisit.TreeVisitParams<Node,?> params, TreeVisit.ITreeVisitor<Node> visitor)
Deprecated.Performs a visit operation on a tree data structure, invoking the given visitor for each node.
-