@@ -3292,7 +3292,7 @@ public static CBORObject ReadJSON(
32923292 * a nonzero basic character (U+0001 to U+007F). (This behavior may
32933293 * change to supporting only UTF-8, with or without a byte order mark,
32943294 * in version 5.0 or later, perhaps with an option to restore the
3295- * previous behavior of also supporting UTF-16 and UTF-32.)
3295+ * previous behavior of also supporting UTF-16 and UTF-32.).
32963296 * @return A CBOR object containing the JSON data decoded.
32973297 * @throws NullPointerException The parameter {@code bytes} is null.
32983298 * @throws com.upokecenter.cbor.CBORException The byte array contains invalid
@@ -3319,7 +3319,7 @@ public static CBORObject FromJSONBytes(byte[] bytes) {
33193319 * a nonzero basic character (U+0001 to U+007F). (This behavior may
33203320 * change to supporting only UTF-8, with or without a byte order mark,
33213321 * in version 5.0 or later, perhaps with an option to restore the
3322- * previous behavior of also supporting UTF-16 and UTF-32.)
3322+ * previous behavior of also supporting UTF-16 and UTF-32.).
33233323 * @param jsonoptions Specifies options to control how the JSON data is decoded
33243324 * to CBOR. See the JSONOptions class.
33253325 * @return A CBOR object containing the JSON data decoded.
@@ -3362,7 +3362,7 @@ public static CBORObject FromJSONBytes(
33623362 * character (U+0001 to U+007F). (This behavior may change to
33633363 * supporting only UTF-8, with or without a byte order mark, in version
33643364 * 5.0 or later, perhaps with an option to restore the previous
3365- * behavior of also supporting UTF-16 and UTF-32.)
3365+ * behavior of also supporting UTF-16 and UTF-32.).
33663366 * @param offset An index, starting at 0, showing where the desired portion of
33673367 * {@code bytes} begins.
33683368 * @param count The length, in bytes, of the desired portion of {@code bytes}
@@ -3397,7 +3397,7 @@ public static CBORObject FromJSONBytes(byte[] bytes, int offset, int
33973397 * character (U+0001 to U+007F). (This behavior may change to
33983398 * supporting only UTF-8, with or without a byte order mark, in version
33993399 * 5.0 or later, perhaps with an option to restore the previous
3400- * behavior of also supporting UTF-16 and UTF-32.)
3400+ * behavior of also supporting UTF-16 and UTF-32.).
34013401 * @param offset An index, starting at 0, showing where the desired portion of
34023402 * {@code bytes} begins.
34033403 * @param count The length, in bytes, of the desired portion of {@code bytes}
@@ -5187,10 +5187,11 @@ public byte[] EncodeToBytes(CBOREncodeOptions options) {
51875187 * @return An object within this CBOR object. Returns this object if pointer is
51885188 * the empty string (even if this object has a CBOR type other than
51895189 * array or map).
5190- * @throws CBORException Thrown if the pointer is null, or if the pointer is
5191- * invalid, or if there is no object at the given pointer, or the
5192- * special key "-" appears in the pointer, or if the pointer is
5193- * non-empty and this object has a CBOR type other than array or map.
5190+ * @throws com.upokecenter.cbor.CBORException Thrown if the pointer is null, or
5191+ * if the pointer is invalid, or if there is no object at the given
5192+ * pointer, or the special key "-" appears in the pointer, or if the
5193+ * pointer is non-empty and this object has a CBOR type other than
5194+ * array or map.
51945195 */
51955196 public CBORObject AtJSONPointer (String pointer ) {
51965197 CBORObject ret = this .AtJSONPointer (pointer , null );
@@ -5216,7 +5217,8 @@ public CBORObject AtJSONPointer(String pointer) {
52165217 * published before JSON was extended to support top-level values other
52175218 * than arrays and key-value dictionaries.).
52185219 * @param pointer A JSON pointer according to RFC 6901.
5219- * @param defaultValue
5220+ * @param defaultValue The parameter {@code defaultValue} is a Cbor.CBORObject
5221+ * object.
52205222 * @return An object within the specified JSON object. Returns this object if
52215223 * pointer is the empty string (even if this object has a CBOR type
52225224 * other than array or map). Returns {@code defaultValue} if the
@@ -5252,8 +5254,8 @@ public CBORObject AtJSONPointer(String pointer, CBORObject defaultValue) {
52525254 * @param patch A JSON patch in the form of a CBOR object; it has the form
52535255 * summarized in the remarks.
52545256 * @return The result of the patch operation.
5255- * @throws CBORException The parameter "patch" is null or the patch operation
5256- * failed.
5257+ * @throws com.upokecenter.cbor. CBORException The parameter {@code patch} is
5258+ * null or the patch operation failed.
52575259 */
52585260 public CBORObject ApplyJSONPatch (CBORObject patch ) {
52595261 return JSONPatch .Patch (this , patch );
0 commit comments