Uses of Interface
jakarta.json.JsonPatchBuilder
-
Packages that use JsonPatchBuilder 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.org.glassfish.json -
-
Uses of JsonPatchBuilder in jakarta.json
Methods in jakarta.json that return JsonPatchBuilder Modifier and Type Method Description JsonPatchBuilderJsonPatchBuilder. add(String path, boolean value)Adds an "add" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. add(String path, int value)Adds an "add" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. add(String path, JsonValue value)Adds an "add" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. add(String path, String value)Adds an "add" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. copy(String path, String from)Adds a "copy" JSON Patch operation.static JsonPatchBuilderJson. createPatchBuilder()Creates a JSON Patch builder (RFC 6902).static JsonPatchBuilderJson. createPatchBuilder(JsonArray array)Creates a JSON Patch builder (RFC 6902), initialized with the specified operations.JsonPatchBuilderJsonPatchBuilder. move(String path, String from)Adds a "move" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. remove(String path)Adds a "remove" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. replace(String path, boolean value)Adds a "replace" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. replace(String path, int value)Adds a "replace" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. replace(String path, JsonValue value)Adds a "replace" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. replace(String path, String value)Adds a "replace" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. test(String path, boolean value)Adds a "test" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. test(String path, int value)Adds a "test" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. test(String path, JsonValue value)Adds a "test" JSON Patch operation.JsonPatchBuilderJsonPatchBuilder. test(String path, String value)Adds a "test" JSON Patch operation. -
Uses of JsonPatchBuilder in jakarta.json.spi
Methods in jakarta.json.spi that return JsonPatchBuilder Modifier and Type Method Description JsonPatchBuilderJsonProvider. createPatchBuilder()Creates a JSON Patch builder (RFC 6902).JsonPatchBuilderJsonProvider. createPatchBuilder(JsonArray array)Creates a JSON Patch builder (RFC 6902), initialized with the specified operations. -
Uses of JsonPatchBuilder in org.glassfish.json
Classes in org.glassfish.json that implement JsonPatchBuilder Modifier and Type Class Description classJsonPatchBuilderImplA builder for constructing a JSON Patch by adding JSON Patch operations incrementally.Methods in org.glassfish.json that return JsonPatchBuilder Modifier and Type Method Description JsonPatchBuilderJsonPatchBuilderImpl. add(String path, boolean value)Adds an "add" JSON Patch operationJsonPatchBuilderJsonPatchBuilderImpl. add(String path, int value)Adds an "add" JSON Patch operationJsonPatchBuilderJsonPatchBuilderImpl. add(String path, JsonValue value)Adds an "add" JSON Patch operation.JsonPatchBuilderJsonPatchBuilderImpl. add(String path, String value)Adds an "add" JSON Patch operationJsonPatchBuilderJsonPatchBuilderImpl. copy(String path, String from)Adds a "copy" JSON Patch operation.JsonPatchBuilderJsonProviderImpl. createPatchBuilder()JsonPatchBuilderJsonProviderImpl. createPatchBuilder(JsonArray array)JsonPatchBuilderJsonPatchBuilderImpl. move(String path, String from)Adds a "move" JSON Patch operation.JsonPatchBuilderJsonPatchBuilderImpl. remove(String path)Adds a "remove" JSON Patch operation.JsonPatchBuilderJsonPatchBuilderImpl. replace(String path, boolean value)Adds a "replace" JSON Patch operation.JsonPatchBuilderJsonPatchBuilderImpl. replace(String path, int value)Adds a "replace" JSON Patch operation.JsonPatchBuilderJsonPatchBuilderImpl. replace(String path, JsonValue value)Adds a "replace" JSON Patch operation.JsonPatchBuilderJsonPatchBuilderImpl. replace(String path, String value)Adds a "replace" JSON Patch operation.JsonPatchBuilderJsonPatchBuilderImpl. test(String path, boolean value)Adds a "test" JSON Patch operation.JsonPatchBuilderJsonPatchBuilderImpl. test(String path, int value)Adds a "test" JSON Patch operation.JsonPatchBuilderJsonPatchBuilderImpl. test(String path, JsonValue value)Adds a "test" JSON Patch operation.JsonPatchBuilderJsonPatchBuilderImpl. test(String path, String value)Adds a "test" JSON Patch operation.
-