Package kong.unirest.core
Interface JsonPatchRequest
-
- All Superinterfaces:
Body,HttpRequest<JsonPatchRequest>
- All Known Implementing Classes:
HttpRequestJsonPatch
public interface JsonPatchRequest extends HttpRequest<JsonPatchRequest>, Body
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCONTENT_TYPE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JsonPatchRequestadd(java.lang.String path, java.lang.Object value)JsonPatchRequestcopy(java.lang.String from, java.lang.String path)JsonPatchRequestmove(java.lang.String from, java.lang.String path)JsonPatchRequestremove(java.lang.String path)JsonPatchRequestreplace(java.lang.String path, java.lang.Object value)JsonPatchRequesttest(java.lang.String path, java.lang.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 java.lang.String CONTENT_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
add
JsonPatchRequest add(java.lang.String path, java.lang.Object value)
-
remove
JsonPatchRequest remove(java.lang.String path)
-
replace
JsonPatchRequest replace(java.lang.String path, java.lang.Object value)
-
test
JsonPatchRequest test(java.lang.String path, java.lang.Object value)
-
move
JsonPatchRequest move(java.lang.String from, java.lang.String path)
-
copy
JsonPatchRequest copy(java.lang.String from, java.lang.String path)
-
-