JsonPatchBuilder |
JsonPatchBuilder.add(String path,
boolean value) |
Adds an "add" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.add(String path,
int value) |
Adds an "add" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.add(String path,
String value) |
Adds an "add" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.add(String path,
JsonValue value) |
Adds an "add" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.copy(String path,
String from) |
Adds a "copy" JSON Patch operation.
|
static JsonPatchBuilder |
Json.createPatchBuilder() |
Creates a JSON Patch builder ( RFC 6902).
|
static JsonPatchBuilder |
Json.createPatchBuilder(JsonArray array) |
Creates a JSON Patch builder
( RFC 6902),
initialized with the specified operations.
|
JsonPatchBuilder |
JsonPatchBuilder.move(String path,
String from) |
Adds a "move" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.remove(String path) |
Adds a "remove" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.replace(String path,
boolean value) |
Adds a "replace" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.replace(String path,
int value) |
Adds a "replace" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.replace(String path,
String value) |
Adds a "replace" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.replace(String path,
JsonValue value) |
Adds a "replace" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.test(String path,
boolean value) |
Adds a "test" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.test(String path,
int value) |
Adds a "test" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.test(String path,
String value) |
Adds a "test" JSON Patch operation.
|
JsonPatchBuilder |
JsonPatchBuilder.test(String path,
JsonValue value) |
Adds a "test" JSON Patch operation.
|