Uses of Interface
ratpack.core.http.HttpMethod
-
Packages that use HttpMethod Package Description ratpack.core.http The HTTP protocol.ratpack.core.http.client The HTTP client. -
-
Uses of HttpMethod in ratpack.core.http
Fields in ratpack.core.http declared as HttpMethod Modifier and Type Field Description static HttpMethod
HttpMethod. DELETE
The DELETE method.static HttpMethod
HttpMethod. GET
The GET method.static HttpMethod
HttpMethod. HEAD
The HEAD method.static HttpMethod
HttpMethod. OPTIONS
The OPTIONS method.static HttpMethod
HttpMethod. PATCH
The PATCH method.static HttpMethod
HttpMethod. POST
The POST method.static HttpMethod
HttpMethod. PUT
The PUT method.Methods in ratpack.core.http that return HttpMethod Modifier and Type Method Description HttpMethod
Request. getMethod()
The method of the request.static HttpMethod
HttpMethod. of(String name)
Creates a method of the given name. -
Uses of HttpMethod in ratpack.core.http.client
Methods in ratpack.core.http.client that return HttpMethod Modifier and Type Method Description HttpMethod
RequestSpec. getMethod()
Get the configured request method.Methods in ratpack.core.http.client with parameters of type HttpMethod Modifier and Type Method Description RequestSpec
RequestSpec. method(HttpMethod method)
Specifies the request method.
-