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 class
Http.Method
Enumeration of all standard HTTPmethods
.Methods in io.helidon.common.http that return Http.RequestMethod Modifier and Type Method Description static Http.RequestMethod
Http.RequestMethod. create(String name)
Create new HTTP request method instance from the provided name.Http.RequestMethod
HttpRequest. 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.RequestMethod
BareRequest. 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.Builder
Routing.Builder. anyOf(Iterable<Http.RequestMethod> methods, Handler... requestHandlers)
Routing.Builder
Routing.Builder. anyOf(Iterable<Http.RequestMethod> methods, PathMatcher pathMatcher, Handler... requestHandlers)
Routing.Builder
Routing.Builder. anyOf(Iterable<Http.RequestMethod> methods, String pathPattern, Handler... requestHandlers)
Routing.Rules
Routing.Rules. anyOf(Iterable<Http.RequestMethod> methods, Handler... requestHandlers)
Routes requests any specified method to provided handler(s).Routing.Rules
Routing.Rules. anyOf(Iterable<Http.RequestMethod> methods, PathMatcher pathMatcher, Handler... requestHandlers)
Routes requests with any specified method and corresponding path to provided handler(s).Routing.Rules
Routing.Rules. anyOf(Iterable<Http.RequestMethod> methods, String pathPattern, Handler... requestHandlers)
Routes requests with any specified method and corresponding path to provided handler(s).
-