@@ -190,6 +190,7 @@ public long clear(String key, Path path) {
190190
191191 /**
192192 * Gets an object at the root path
193+ * @param <T> type of data represented at {@code key}
193194 * @param key the key name
194195 * @return the requested object
195196 */
@@ -199,6 +200,7 @@ public <T> T get(String key) {
199200
200201 /**
201202 * Gets an object
203+ * @param <T> type of data represented at {@code key}
202204 * @param key the key name
203205 * @param paths optional one ore more paths in the object
204206 * @return the requested object
@@ -212,8 +214,9 @@ public <T> T get(String key, Path... paths) {
212214
213215 /**
214216 * Gets an object
217+ * @param <T> type of data represented at {@code key}
215218 * @param key the key name
216- * @param clazz
219+ * @param clazz Class representing {@code T}
217220 * @param paths optional one ore more paths in the object
218221 * @return the requested object
219222 */
@@ -528,8 +531,6 @@ private Jedis getConnection() {
528531 *
529532 * Returns the string's new size.
530533 *
531- * See <a href="#{@link}">{@link https://oss.redislabs.com/redisjson/commands/#jsonstrappend}</a>.
532- *
533534 * @param key the key of the value
534535 * @param path the path of the value
535536 * @param objects objects One or more elements to be added to the array
@@ -554,8 +555,6 @@ public Long strAppend(String key, Path path, Object... objects) {
554555 * Report the length of the JSON String at path in key.
555556 * Path defaults to root if not provided.
556557 *
557- * See <a href="#{@link}">{@link https://oss.redislabs.com/redisjson/commands/#jsonstrlen}</a>.
558- *
559558 * @param key the key of the value
560559 * @param path the path of the value
561560 * @return the size of string at path. If the key or path do not exist, null is returned.
@@ -576,8 +575,6 @@ public Long strLen(String key, Path path) {
576575 *
577576 * Returns the array's new size.
578577 *
579- * See <a href="#{@link}">{@link https://oss.redislabs.com/redisjson/commands/#jsonarrappend}</a>.
580- *
581578 * @param key the key of the value
582579 * @param path the path of the value
583580 * @param objects one or more elements to be added to the array
@@ -605,8 +602,6 @@ public Long arrAppend(String key, Path path, Object... objects) {
605602 * If the item is not found, it returns -1. If called on a key path that is not
606603 * an array, it throws an error.
607604 *
608- * See <a href="#{@link}">{@link https://oss.redislabs.com/redisjson/commands/#jsonarrindex}</a>.
609- *
610605 * @param key the key of the value
611606 * @param path the path of the value
612607 * @param scalar the JSON scalar to search for
@@ -631,8 +626,6 @@ public Long arrIndex(String key, Path path, Object scalar) {
631626 *
632627 * Returns the array's new size.
633628 *
634- * See <a href="#{@link}">{@link https://oss.redislabs.com/redisjson/commands/#jsonarrinsert}</a>.
635- *
636629 * @param key the key of the value
637630 * @param path the path of the value
638631 * @param index position in the array to insert the value(s)
@@ -660,8 +653,6 @@ public Long arrInsert(String key, Path path, Long index, Object... objects) {
660653 *
661654 * If called on a key path that is not an array, it will throw an error.
662655 *
663- * See <a href="#{@link}">{@link https://oss.redislabs.com/redisjson/commands/#jsonarrlen}</a>.
664- *
665656 * @param key the key of the value
666657 * @param path the path of the value
667658 * @return the size of array at path
@@ -684,8 +675,6 @@ public Long arrLen(String key, Path path) {
684675 * popping from (defaults to -1, meaning the last element). Out of range indices are
685676 * rounded to their respective array ends. Popping an empty array yields null.
686677 *
687- * See <a href="#{@link}">{@link https://oss.redislabs.com/redisjson/commands/#jsonarrpop}</a>.
688- *
689678 * @param key the key of the value
690679 * @param clazz target class to serialize results
691680 * @param path the path of the value
@@ -714,8 +703,6 @@ public <T> T arrPop(String key, Class<T> clazz, Path path, Long index) {
714703 * popping from (defaults to -1, meaning the last element). Out of range indices are
715704 * rounded to their respective array ends. Popping an empty array yields null.
716705 *
717- * See <a href="#{@link}">{@link https://oss.redislabs.com/redisjson/commands/#jsonarrpop}</a>.
718- *
719706 * @param key the key of the value
720707 * @param clazz target class to serialize results
721708 * @param path the path of the value
@@ -732,8 +719,6 @@ public <T> T arrPop(String key, Class<T> clazz, Path path) {
732719 * popping from (defaults to -1, meaning the last element). Out of range indices are
733720 * rounded to their respective array ends. Popping an empty array yields null.
734721 *
735- * See <a href="#{@link}">{@link https://oss.redislabs.com/redisjson/commands/#jsonarrpop}</a>.
736- *
737722 * @param key the key of the value
738723 * @param clazz target class to serialize results
739724 * @return the popped JSON value.
@@ -750,8 +735,6 @@ public <T> T arrPop(String key, Class<T> clazz) {
750735 * will be an empty array. If start is < 0 then it will be treated as 0. If stop is larger
751736 * than the end of the array, it will be treated like the last element in it.
752737 *
753- * See <a href="#{@link}">{@link https://oss.redislabs.com/redisjson/commands/#jsonarrtrim}</a>.
754- *
755738 * @param key the key of the value
756739 * @param path the path of the value
757740 * @param start the start of the range
0 commit comments