| 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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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,
   JsonValue value)
Adds an "add" JSON Patch operation. 
 | 
JsonPatchBuilder | 
JsonPatchBuilder.add(String path,
   String 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,
       JsonValue value)
Adds a "replace" JSON Patch operation. 
 | 
JsonPatchBuilder | 
JsonPatchBuilder.replace(String path,
       String 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,
    JsonValue value)
Adds a "test" JSON Patch operation. 
 | 
JsonPatchBuilder | 
JsonPatchBuilder.test(String path,
    String value)
Adds a "test" JSON Patch operation. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
JsonPatchBuilder | 
JsonProvider.createPatchBuilder()
Creates a JSON Patch builder (RFC 6902). 
 | 
JsonPatchBuilder | 
JsonProvider.createPatchBuilder(JsonArray array)
Creates a JSON Patch builder
 (RFC 6902),
 initialized with the specified operations. 
 | 
Copyright © 2019 Eclipse Foundation.
Use is subject to license terms.