Package | Description |
---|---|
org.forgerock.json.fluent |
Modifier and Type | Method and Description |
---|---|
JsonPointer |
JsonValue.asPointer()
Returns the JSON string value as a JSON pointer.
|
JsonPointer |
JsonPointer.child(int child)
Returns a new JSON pointer, which identifies a specified child element of the
array identified by this pointer.
|
JsonPointer |
JsonPointer.child(String child)
Returns a new JSON pointer, which identifies a specified child member of the
object identified by this pointer.
|
JsonPointer |
JsonValue.getPointer()
Returns the pointer of the JSON value in its JSON structure.
|
JsonPointer |
JsonPointer.parent()
Returns a pointer to the parent of the JSON value identified by this JSON pointer,
or
null if the pointer has no parent JSON value (i.e. references document root). |
JsonPointer |
JsonPointer.relativePointer()
Returns a pointer containing all but the first reference token contained
in this pointer, or
/ if this pointer contains less than 2
reference tokens. |
JsonPointer |
JsonPointer.relativePointer(int sz)
Returns a pointer containing the last
sz reference tokens
contained in this pointer. |
Modifier and Type | Method and Description |
---|---|
JsonValue |
JsonValue.get(JsonPointer pointer)
Returns the specified child value with a pointer, relative to this value as root.
|
void |
JsonValue.put(JsonPointer pointer,
Object object)
Sets the value of the value identified by the specified pointer, relative to this value
as root.
|
Constructor and Description |
---|
JsonValue(Object object,
JsonPointer pointer)
Constructs a JSON value object with a given object and pointer.
|
JsonValue(Object object,
JsonPointer pointer,
Collection<? extends JsonTransformer> transformers)
Constructs a JSON value object with given object, pointer and transformers.
|
Copyright © 2025 Open Identity Platform Community. All rights reserved.