| Package | Description |
|---|---|
| javax.json | |
| javax.json.spi |
| Modifier and Type | Interface and Description |
|---|---|
interface |
JsonArray
A JsonArray e.g.
|
interface |
JsonObject
A JsonObject, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
<T extends JsonStructure> |
JsonPointer.add(T target,
JsonValue newValue)
Add or replace the value at the position referenced by this JsonPointer with
the new value
|
<T extends JsonStructure> |
JsonPatch.apply(T target)
Applies the
JsonPatch to the given target. |
<T extends JsonStructure> |
JsonPointer.remove(T target)
Remove the value from the referenced position inside the target JSON.
|
<T extends JsonStructure> |
JsonPointer.replace(T target,
JsonValue newValue)
Replace the value at the position referenced by this JsonPointer with
the newValue.
|
| Modifier and Type | Method and Description |
|---|---|
JsonStructure |
JsonReader.read() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
JsonPointer.containsValue(JsonStructure target)
Verify if the target JSON structure contains a value at the referenced location.
|
static JsonPatch |
Json.createDiff(JsonStructure source,
JsonStructure target)
|
JsonValue |
JsonPointer.getValue(JsonStructure target)
Get the JsonValue at the position referenced by this JsonPointer.
|
void |
JsonWriter.write(JsonStructure value) |
| Modifier and Type | Method and Description |
|---|---|
JsonPatch |
JsonProvider.createDiff(JsonStructure source,
JsonStructure target)
|
Copyright © 2003–2020 The Apache Software Foundation. All rights reserved.