Uses of Class
org.eclipse.parsson.NodeReference
-
Packages that use NodeReference Package Description org.eclipse.parsson -
-
Uses of NodeReference in org.eclipse.parsson
Subclasses of NodeReference in org.eclipse.parsson Modifier and Type Class Description (package private) static class
NodeReference.ArrayReference
(package private) static class
NodeReference.ObjectReference
(package private) static class
NodeReference.RootReference
Methods in org.eclipse.parsson that return NodeReference Modifier and Type Method Description private NodeReference[]
JsonPointerImpl. getReferences(jakarta.json.JsonStructure target)
Computes theNodeReference
s for each node on the path of the JSON Pointer, in reverse order, starting from the leaf node(package private) static NodeReference
NodeReference. of(jakarta.json.JsonArray array, int index, JsonContext jsonContext)
Returns aNodeReference
for a member value in a JSON array.(package private) static NodeReference
NodeReference. of(jakarta.json.JsonObject object, java.lang.String name, JsonContext jsonContext)
Returns aNodeReference
for a name/value pair in a JSON object.(package private) static NodeReference
NodeReference. of(jakarta.json.JsonStructure structure)
Returns aNodeReference
for aJsonStructure
.Method parameters in org.eclipse.parsson with type arguments of type NodeReference Modifier and Type Method Description private jakarta.json.JsonStructure
JsonPointerImpl. execute(java.util.function.BiFunction<NodeReference,jakarta.json.JsonValue,jakarta.json.JsonStructure> op, jakarta.json.JsonStructure target, jakarta.json.JsonValue value)
Executes the operation
-