Package org.apache.flink.util
Interface Visitor<T extends Visitable<T>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
postVisit(T visitable)
Method that is invoked after all child nodes or descendant nodes were visited.boolean
preVisit(T visitable)
Method that is invoked on the visit before visiting and child nodes or descendant nodes.
-
-
-
Method Detail
-
preVisit
boolean preVisit(T visitable)
Method that is invoked on the visit before visiting and child nodes or descendant nodes.- Returns:
- True, if the traversal should continue, false otherwise.
-
postVisit
void postVisit(T visitable)
Method that is invoked after all child nodes or descendant nodes were visited.
-
-