| Package | Description |
|---|---|
| javax.json |
Provides an object model API to process JSON.
|
| javax.json.spi |
Service Provider Interface (SPI) to plug in implementations for
JSON processing objects.
|
| org.glassfish.json |
| Modifier and Type | Method | Description |
|---|---|---|
static JsonMergePatch |
Json.createMergeDiff(JsonValue source,
JsonValue target) |
Generates a JSON Merge Patch (RFC 7396)
from the source and target
JsonValues
which when applied to the source, yields the target. |
static JsonMergePatch |
Json.createMergePatch(JsonValue patch) |
Creates JSON Merge Patch (RFC 7396)
from specified
JsonValue. |
| Modifier and Type | Method | Description |
|---|---|---|
JsonMergePatch |
JsonProvider.createMergeDiff(JsonValue source,
JsonValue target) |
Generates a JSON Merge Patch (RFC 7396)
from the source and target
JsonValues
which when applied to the source, yields the target. |
JsonMergePatch |
JsonProvider.createMergePatch(JsonValue patch) |
Creates JSON Merge Patch (RFC 7396)
from specified
JsonValue. |
| Modifier and Type | Class | Description |
|---|---|---|
class |
JsonMergePatchImpl |
This class is an implementation of a JSON Merge Patch as specified in
RFC 7396.
|
| Modifier and Type | Method | Description |
|---|---|---|
JsonMergePatch |
JsonProviderImpl.createMergeDiff(JsonValue source,
JsonValue target) |
|
JsonMergePatch |
JsonProviderImpl.createMergePatch(JsonValue patch) |
Copyright © 2018 Oracle. All rights reserved.