Package io.quarkus.paths
Interface PathVisitor
-
public interface PathVisitorPathTreepath visitor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvisitPath(PathVisit visit)Called to visit a path when walking a path tree or when a caller requested to visit a specific path in a tree.
-
-
-
Method Detail
-
visitPath
void visitPath(PathVisit visit)
Called to visit a path when walking a path tree or when a caller requested to visit a specific path in a tree. In the latter case if the requested path does not exist, thevisitargument will be null and it'll be up to the caller how to handle that, i.e. whether to throw a path not found exception or return silently.- Parameters:
visit- visit object or null, in case the requested path does not exist
-
-