Package javax.json

Interface JsonStructure

    • Method Detail

      • getValue

          🗕  🗗  🗖
        default JsonValue getValue​(java.lang.String jsonPointer)
        Get the value referenced by the provided JSON Pointer in the JsonStructure.
        Parameters:
        jsonPointer - the JSON Pointer
        Returns:
        the JsonValue at the referenced location
        Throws:
        JsonException - if the JSON Pointer is malformed, or if it references a non-existing member or value.
        Since:
        1.1
        Code:
        Exact Method Body:
         return Json.createPointer(jsonPointer).getValue(this);