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