Uses of Interface
io.helidon.common.http.Http.RequestMethod
-
Packages that use Http.RequestMethod Package Description io.helidon.common.http HTTP APIs and implementations usable by both server and client side of the HTTP story.io.helidon.webserver Reactive web server API. -
-
Uses of Http.RequestMethod in io.helidon.common.http
Classes in io.helidon.common.http that implement Http.RequestMethod Modifier and Type Class Description static classHttp.MethodEnumeration of all standard HTTPmethods.Methods in io.helidon.common.http that return Http.RequestMethod Modifier and Type Method Description static Http.RequestMethodHttp.RequestMethod. create(String name)Create new HTTP request method instance from the provided name.Http.RequestMethodHttpRequest. method()Returns an HTTP request method. -
Uses of Http.RequestMethod in io.helidon.webserver
Methods in io.helidon.webserver that return Http.RequestMethod Modifier and Type Method Description Http.RequestMethodBareRequest. method()Gets an HTTP request method.Method parameters in io.helidon.webserver with type arguments of type Http.RequestMethod Modifier and Type Method Description Routing.BuilderRouting.Builder. anyOf(Iterable<Http.RequestMethod> methods, Handler... requestHandlers)Routing.BuilderRouting.Builder. anyOf(Iterable<Http.RequestMethod> methods, PathMatcher pathMatcher, Handler... requestHandlers)Routing.BuilderRouting.Builder. anyOf(Iterable<Http.RequestMethod> methods, String pathPattern, Handler... requestHandlers)Routing.RulesRouting.Rules. anyOf(Iterable<Http.RequestMethod> methods, Handler... requestHandlers)Routes requests any specified method to provided handler(s).Routing.RulesRouting.Rules. anyOf(Iterable<Http.RequestMethod> methods, PathMatcher pathMatcher, Handler... requestHandlers)Routes requests with any specified method and corresponding path to provided handler(s).Routing.RulesRouting.Rules. anyOf(Iterable<Http.RequestMethod> methods, String pathPattern, Handler... requestHandlers)Routes requests with any specified method and corresponding path to provided handler(s).
-