<T> HttpResponse<T> |
BaseRequest.asObject(GenericType<T> genericType) |
|
<T> HttpResponse<T> |
HttpRequest.asObject(GenericType<T> genericType) |
Executes the request and returns the response with the body mapped into T by a configured ObjectMapper
|
<T> java.util.concurrent.CompletableFuture<HttpResponse<T>> |
BaseRequest.asObjectAsync(GenericType<T> genericType) |
|
<T> java.util.concurrent.CompletableFuture<HttpResponse<T>> |
BaseRequest.asObjectAsync(GenericType<T> genericType,
Callback<T> callback) |
|
<T> java.util.concurrent.CompletableFuture<HttpResponse<T>> |
HttpRequest.asObjectAsync(GenericType<T> genericType) |
Executes the request asynchronously, and use a GenericType with the ObjectMapper
|
<T> java.util.concurrent.CompletableFuture<HttpResponse<T>> |
HttpRequest.asObjectAsync(GenericType<T> genericType,
Callback<T> callback) |
Executes the request asynchronously, and use a GenericType with the ObjectMapper
|
int |
GenericType.compareTo(GenericType<T> o) |
|
default <T> T |
ObjectMapper.readValue(java.lang.String value,
GenericType<T> genericType) |
reads the content from the request as a string and transforms to a type passed by the
asObject method on the Unirest builder.
|