Uses of Interface
jakarta.json.JsonMergePatch
-
Packages that use JsonMergePatch Package Description jakarta.json Provides an object model API to process JSON.jakarta.json.spi Service Provider Interface (SPI) to plug in implementations for JSON processing objects. -
-
Uses of JsonMergePatch in jakarta.json
Methods in jakarta.json that return JsonMergePatch Modifier and Type Method Description static JsonMergePatch
Json. createMergeDiff(JsonValue source, JsonValue target)
Generates a JSON Merge Patch (RFC 7396) from the source and targetJsonValue
s which when applied to thesource
, yields thetarget
.static JsonMergePatch
Json. createMergePatch(JsonValue patch)
Creates JSON Merge Patch (RFC 7396) from specifiedJsonValue
. -
Uses of JsonMergePatch in jakarta.json.spi
Methods in jakarta.json.spi that return JsonMergePatch Modifier and Type Method Description JsonMergePatch
JsonProvider. createMergeDiff(JsonValue source, JsonValue target)
Generates a JSON Merge Patch (RFC 7396) from the source and targetJsonValue
s which when applied to thesource
, yields thetarget
.JsonMergePatch
JsonProvider. createMergePatch(JsonValue patch)
Creates JSON Merge Patch (RFC 7396) from specifiedJsonValue
.
-