Package kong.unirest.core
Interface JsonPatchRequest
-
- All Superinterfaces:
Body,HttpRequest<JsonPatchRequest>
public interface JsonPatchRequest extends HttpRequest<JsonPatchRequest>, Body
-
-
Field Summary
Fields Modifier and Type Field Description static StringCONTENT_TYPE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JsonPatchRequestadd(String path, Object value)JsonPatchRequestcopy(String from, String path)JsonPatchRequestmove(String from, String path)JsonPatchRequestremove(String path)JsonPatchRequestreplace(String path, Object value)JsonPatchRequesttest(String path, Object value)-
Methods inherited from interface kong.unirest.core.Body
getBoundary, getCharset, getField, getMode, getMonitor, isEntityBody, isMultiPart, multiParts, uniPart
-
Methods inherited from interface kong.unirest.core.HttpRequest
accept, accept, asBytes, asBytesAsync, asBytesAsync, asEmpty, asEmptyAsync, asEmptyAsync, asFile, asFileAsync, asFileAsync, asJson, asJsonAsync, asJsonAsync, asObject, asObject, asObject, asObjectAsync, asObjectAsync, asObjectAsync, asObjectAsync, asObjectAsync, asPaged, asString, asStringAsync, asStringAsync, basicAuth, cookie, cookie, cookie, downloadMonitor, getBody, getCreationTime, getHeaders, getHttpMethod, getRequestTimeout, getUrl, getVersion, header, headerReplace, headers, headersReplace, queryString, queryString, queryString, requestTimeout, responseEncoding, routeParam, routeParam, thenConsume, thenConsumeAsync, toSummary, version, withObjectMapper
-
-
-
-
Field Detail
-
CONTENT_TYPE
static final String CONTENT_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
add
JsonPatchRequest add(String path, Object value)
-
remove
JsonPatchRequest remove(String path)
-
replace
JsonPatchRequest replace(String path, Object value)
-
test
JsonPatchRequest test(String path, Object value)
-
move
JsonPatchRequest move(String from, String path)
-
copy
JsonPatchRequest copy(String from, String path)
-
-