Interface INodeVisitor<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Tree visitor interface.
-
Method Summary
Modifier and TypeMethodDescriptionvoidprocess(T e, T parent, IVisitResults<T> results) Process a node being visited.
-
Method Details
-
process
Process a node being visited.- Parameters:
e- the node being visitedparent- the preceding node, either the parent node or null for the current local rootresults- data used to act on the traversal process
-