Uses of Interface
io.helidon.http.PathMatcher
Packages that use PathMatcher
Package
Description
HTTP APIs and implementations usable by both server and client side of the HTTP story.
Helidon WebServer HTTP specific APIs.
-
Uses of PathMatcher in io.helidon.http
Methods in io.helidon.http that return PathMatcherModifier and TypeMethodDescriptionstatic PathMatcher
PathMatchers.any()
Path matcher matching any path.static PathMatcher
Create a path matcher from a path pattern.static PathMatcher
Exact match path matcher.static PathMatcher
Pattern match path matcher.static PathMatcher
Prefix match path matcher. -
Uses of PathMatcher in io.helidon.webserver.http
Methods in io.helidon.webserver.http with parameters of type PathMatcherModifier and TypeMethodDescriptionHttpRoute.Builder.path
(PathMatcher pathMatcher) Path matcher to handle path.default HttpRouting.Builder
HttpRouting.Builder.route
(Method method, PathMatcher pathMatcher, Handler handler) default HttpRouting.Builder
HttpRouting.Builder.route
(Predicate<Method> methodPredicate, PathMatcher pathMatcher, Handler handler) default HttpRules
HttpRules.route
(Method method, PathMatcher pathMatcher, Handler handler) Add a route.default HttpRules
HttpRules.route
(Predicate<Method> methodPredicate, PathMatcher pathMatcher, Handler handler) Add a route.