Uses of Class
de.xima.fc.common.tree.TreeVisit.TreeVisitParams
Packages that use TreeVisit.TreeVisitParams
-
Uses of TreeVisit.TreeVisitParams in de.xima.fc.common.tree
Methods in de.xima.fc.common.tree that return TreeVisit.TreeVisitParamsModifier and TypeMethodDescriptionTreeVisit.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.TreeVisitParamsModifier and TypeMethodDescriptionstatic <Node> voidTreeVisit.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> voidTreeVisit.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.
TreeVisit.TreeVisitParams.defaults(ITreeAccessor).