Uses of Interface
io.quarkus.paths.PathVisit
-
Packages that use PathVisit Package Description io.quarkus.paths -
-
Uses of PathVisit in io.quarkus.paths
Methods in io.quarkus.paths with parameters of type PathVisit Modifier and Type Method Description voidPathVisitor. 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.Method parameters in io.quarkus.paths with type arguments of type PathVisit Modifier and Type Method Description voidArchivePathTree. accept(String relativePath, Consumer<PathVisit> consumer)voidCachingPathTree. accept(String relativePath, Consumer<PathVisit> func)voidDirectoryPathTree. accept(String relativePath, Consumer<PathVisit> consumer)voidEmptyPathTree. accept(String relativePath, Consumer<PathVisit> func)voidMultiRootPathTree. accept(String relativePath, Consumer<PathVisit> func)voidPathTree. accept(String relativePath, Consumer<PathVisit> consumer)Consumes a given path relative to the root of the tree.protected <T> TArchivePathTree. apply(String relativePath, Function<PathVisit,T> func, boolean manifestEnabled)<T> TCachingPathTree. apply(String relativePath, Function<PathVisit,T> func)protected <T> TDirectoryPathTree. apply(String relativePath, Function<PathVisit,T> func, boolean manifestEnabled)<T> TEmptyPathTree. apply(String relativePath, Function<PathVisit,T> func)<T> TMultiRootPathTree. apply(String relativePath, Function<PathVisit,T> func)<T> TPathTree. apply(String relativePath, Function<PathVisit,T> func)Applies a function to a given path relative to the root of the tree.<T> TPathTreeWithManifest. apply(String relativePath, Function<PathVisit,T> func)protected abstract <T> TPathTreeWithManifest. apply(String relativePath, Function<PathVisit,T> func, boolean manifestEnabled)
-