Uses of Enum Class
io.helidon.common.http.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
Modifier and TypeMethodDescriptionstatic Http.Method
Returns 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
Modifier and TypeMethodDescriptionRequestPredicate.isOfMethod
(Http.Method... methods) Accepts only requests with one of specified HTTP methods.static Http1Route
Http1Route.route
(Http.Method method, String path, Handler handler) Create an HTTP/1 specific route.static Http1Route
Http1Route.route
(PathMatcher pathMatcher, Handler handler, Http.Method... methods) Create an HTTP/1.1 specific route.static HttpRoute
HttpRoute.route
(Http.Method method, String path, Handler handler) Create HTTP route.ModifierConstructorDescriptionprotected
Http1Route
(Http.Method method, String path, Handler handler) protected
Http1Route
(PathMatcher pathMatcher, Handler handler, Http.Method... methods) -
Uses of Http.Method in io.helidon.webserver.http2
Modifier and TypeMethodDescriptionstatic Http2Route
Http2Route.route
(Http.Method method, String path, Handler handler) Create an HTTP/2 specific route.static Http2Route
Http2Route.route
(PathMatcher pathMatcher, Handler handler, Http.Method... methods) Create an HTTP/2 specific route.