Uses of Enum Class
io.helidon.common.http.Http.Method
Packages that use Http.Method
Package
Description
HTTP APIs and implementations usable by both server and client side of the HTTP story.
Reactive web server API.
HTTP/2 support for Helidon webserver.
-
Uses of Http.Method in io.helidon.common.http
Methods in io.helidon.common.http that return Http.MethodModifier and TypeMethodDescriptionstatic Http.MethodReturns the enum constant of this class with the specified name.static Http.Method[]Http.Method.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of Http.Method in io.helidon.webserver
Methods in io.helidon.webserver with parameters of type Http.MethodModifier and TypeMethodDescriptionRequestPredicate.isOfMethod(Http.Method... methods) Accepts only requests with one of specified HTTP methods.static Http1RouteHttp1Route.route(Http.Method method, String path, Handler handler) Create an HTTP/1 specific route.static Http1RouteHttp1Route.route(PathMatcher pathMatcher, Handler handler, Http.Method... methods) Create an HTTP/1.1 specific route.static HttpRouteHttpRoute.route(Http.Method method, String path, Handler handler) Create HTTP route.Constructors in io.helidon.webserver with parameters of type Http.MethodModifierConstructorDescriptionprotectedHttp1Route(Http.Method method, String path, Handler handler) protectedHttp1Route(PathMatcher pathMatcher, Handler handler, Http.Method... methods) -
Uses of Http.Method in io.helidon.webserver.http2
Methods in io.helidon.webserver.http2 with parameters of type Http.MethodModifier and TypeMethodDescriptionstatic Http2RouteHttp2Route.route(Http.Method method, String path, Handler handler) Create an HTTP/2 specific route.static Http2RouteHttp2Route.route(PathMatcher pathMatcher, Handler handler, Http.Method... methods) Create an HTTP/2 specific route.