Uses of Class
kong.unirest.core.JsonNode
-
Packages that use JsonNode Package Description kong.unirest.core -
-
Uses of JsonNode in kong.unirest.core
Fields in kong.unirest.core declared as JsonNode Modifier and Type Field Description private JsonNode
JsonResponse. node
Methods in kong.unirest.core that return JsonNode Modifier and Type Method Description JsonNode
JsonResponse. getBody()
private JsonNode
JsonResponse. getNode(RawResponse response)
private JsonNode
JsonResponse. toJsonNode(java.lang.String json)
Methods in kong.unirest.core that return types with arguments of type JsonNode Modifier and Type Method Description HttpResponse<JsonNode>
BaseRequest. asJson()
HttpResponse<JsonNode>
HttpRequest. asJson()
Executes the request and returns the response with the body mapped into a JsonNodejava.util.concurrent.CompletableFuture<HttpResponse<JsonNode>>
BaseRequest. asJsonAsync()
java.util.concurrent.CompletableFuture<HttpResponse<JsonNode>>
BaseRequest. asJsonAsync(Callback<JsonNode> callback)
java.util.concurrent.CompletableFuture<HttpResponse<JsonNode>>
HttpRequest. asJsonAsync()
Executes the request asynchronously and returns the response with the body mapped into a JsonNodejava.util.concurrent.CompletableFuture<HttpResponse<JsonNode>>
HttpRequest. asJsonAsync(Callback<JsonNode> callback)
Executes the request asynchronously and returns the response with the body mapped into a JsonNodeMethods in kong.unirest.core with parameters of type JsonNode Modifier and Type Method Description RequestBodyEntity
HttpRequestBody. body(JsonNode body)
RequestBodyEntity
HttpRequestUniBody. body(JsonNode jsonBody)
RequestBodyEntity
HttpRequestWithBody. body(JsonNode body)
Set JSON on the bodyRequestBodyEntity
RequestBodyEntity. body(JsonNode jsonBody)
Set JSON on the bodyMethod parameters in kong.unirest.core with type arguments of type JsonNode Modifier and Type Method Description java.util.concurrent.CompletableFuture<HttpResponse<JsonNode>>
BaseRequest. asJsonAsync(Callback<JsonNode> callback)
java.util.concurrent.CompletableFuture<HttpResponse<JsonNode>>
HttpRequest. asJsonAsync(Callback<JsonNode> callback)
Executes the request asynchronously and returns the response with the body mapped into a JsonNode
-