Uses of Class
kong.unirest.core.HttpMethod
-
Packages that use HttpMethod Package Description kong.unirest.core -
-
Uses of HttpMethod in kong.unirest.core
Fields in kong.unirest.core declared as HttpMethod Modifier and Type Field Description static HttpMethod
HttpMethod. DELETE
static HttpMethod
HttpMethod. GET
static HttpMethod
HttpMethod. HEAD
protected HttpMethod
BaseRequest. method
private HttpMethod
Routes. method
protected HttpMethod
WebSocketRequestImpl. method
static HttpMethod
HttpMethod. OPTIONS
static HttpMethod
HttpMethod. PATCH
static HttpMethod
HttpMethod. POST
static HttpMethod
HttpMethod. PUT
static HttpMethod
HttpMethod. TRACE
static HttpMethod
HttpMethod. WEBSOCKET
Fields in kong.unirest.core with type parameters of type HttpMethod Modifier and Type Field Description private static java.util.Map<java.lang.String,HttpMethod>
HttpMethod. REGISTRY
Methods in kong.unirest.core that return HttpMethod Modifier and Type Method Description HttpMethod
BaseRequest. getHttpMethod()
HttpMethod
HttpRequest. getHttpMethod()
HttpMethod
HttpRequestSummary. getHttpMethod()
HttpMethod
RequestSummary. getHttpMethod()
(package private) HttpMethod
Routes. getMethod()
static HttpMethod
HttpMethod. valueOf(java.lang.String verb)
Methods in kong.unirest.core that return types with arguments of type HttpMethod Modifier and Type Method Description java.util.Set<HttpMethod>
HttpMethod. all()
Methods in kong.unirest.core with parameters of type HttpMethod Modifier and Type Method Description Assert
MockClient. assertThat(HttpMethod method, java.lang.String path)
Assert a specific method and path were invokedExpectation
MockClient. expect(HttpMethod method)
Expect ANY call to a path with this methodExpectation
MockClient. expect(HttpMethod method, java.lang.String path)
Start an expectation chain.private java.util.Optional<Routes>
MockClient. findByPath(HttpMethod get, Path path)
(package private) boolean
Routes. matches(HttpMethod httpMethod, Path url)
Constructors in kong.unirest.core with parameters of type HttpMethod Constructor Description BaseRequest(Config config, HttpMethod method, java.lang.String url)
HttpRequestBody(Config config, HttpMethod method, java.lang.String url)
HttpRequestNoBody(Config config, HttpMethod method, java.lang.String url)
Routes(HttpMethod method, Path p)
-