static JsonPatch |
JsonPatch.add(String path,
Object value) |
(experimental) Adds a value to an object or inserts it into an array.
|
static JsonPatch |
JsonPatch.copy(String from,
String path) |
(experimental) Copies a value from one location to another within the JSON document.
|
static JsonPatch |
JsonPatch.move(String from,
String path) |
(experimental) Moves a value from one location to the other.
|
static JsonPatch |
JsonPatch.remove(String path) |
(experimental) Removes a value from an object or array.
|
static JsonPatch |
JsonPatch.replace(String path,
Object value) |
(experimental) Replaces a value.
|
static JsonPatch |
JsonPatch.test(String path,
Object value) |
(experimental) Tests that the specified value is set in the document.
|
static JsonPatch |
JsonPatch.test(String path,
Object value,
TestFailureBehavior failureBehavior) |
(experimental) Tests that the specified value is set in the document.
|