Package | Description |
---|---|
com.jsunsoft.http |
Modifier and Type | Method and Description |
---|---|
static HttpMethod |
HttpMethod.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpMethod[] |
HttpMethod.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
default ResponseHandler<?> |
WebTarget.rawRequest(HttpMethod method)
Invoke an arbitrary method for the current request.
|
default ResponseHandler<?> |
WebTarget.rawRequest(HttpMethod method,
org.apache.http.HttpEntity httpEntity)
Invoke an arbitrary method for the current request.
|
default ResponseHandler<?> |
WebTarget.rawRequest(HttpMethod method,
String payload)
Invoke an arbitrary method for the current request.
|
Response |
WebTarget.request(HttpMethod method)
Invoke an arbitrary method for the current request.
|
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
Class<T> responseType)
Invoke an arbitrary method for the current request.
|
Response |
WebTarget.request(HttpMethod method,
org.apache.http.HttpEntity httpEntity)
Invoke an arbitrary method for the current request.
|
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
org.apache.http.HttpEntity httpEntity,
Class<T> responseType)
Invoke an arbitrary method for the current request.
|
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
org.apache.http.HttpEntity httpEntity,
TypeReference<T> responseType)
Invoke an arbitrary method for the current request.
|
default Response |
WebTarget.request(HttpMethod method,
String payload) |
default <T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
String payload,
Class<T> responseType)
|
default <T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
String payload,
TypeReference<T> responseType) |
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
TypeReference<T> responseType)
Invoke an arbitrary method for the current request.
|
Copyright © 2021. All rights reserved.