diff --git a/src/main/java/redis/clients/jedis/Jedis.java b/src/main/java/redis/clients/jedis/Jedis.java index 936ee4f..b43b00a 100644 --- a/src/main/java/redis/clients/jedis/Jedis.java +++ b/src/main/java/redis/clients/jedis/Jedis.java @@ -508,7 +508,7 @@ public class Jedis extends BinaryJedis implements JedisCommands { * * @see #incr(String) * @see #decr(String) - * @see #incrBy(String, int) + * @see #incrBy(String, long) * * @param key * @param integer @@ -536,8 +536,8 @@ public class Jedis extends BinaryJedis implements JedisCommands { * Time complexity: O(1) * * @see #incr(String) - * @see #incrBy(String, int) - * @see #decrBy(String, int) + * @see #incrBy(String, long) + * @see #decrBy(String, long) * * @param key * @return Integer reply, this commands will reply with the new value of key @@ -564,7 +564,7 @@ public class Jedis extends BinaryJedis implements JedisCommands { * * @see #incr(String) * @see #decr(String) - * @see #decrBy(String, int) + * @see #decrBy(String, long) * * @param key * @param integer @@ -591,9 +591,9 @@ public class Jedis extends BinaryJedis implements JedisCommands { *
* Time complexity: O(1) * - * @see #incrBy(String, int) + * @see #incrBy(String, long) * @see #decr(String) - * @see #decrBy(String, int) + * @see #decrBy(String, long) * * @param key * @return Integer reply, this commands will reply with the new value of key @@ -1042,7 +1042,7 @@ public class Jedis extends BinaryJedis implements JedisCommands { * O(N) (with N being the length of the list), setting the first or last * elements of the list is O(1). * - * @see #lindex(String, int) + * @see #lindex(String, long) * * @param key * @param index @@ -1278,7 +1278,7 @@ public class Jedis extends BinaryJedis implements JedisCommands { /** * Return the members of a set resulting from the intersection of all the * sets hold at the specified keys. Like in - * {@link #lrange(String, int, int) LRANGE} the result is sent to the client + * {@link #lrange(String, long, long) LRANGE} the result is sent to the client * as a multi-bulk reply (see the protocol specification for more * information). If just a single key is specified, then this command * produces the same result as {@link #smembers(String) SMEMBERS}. Actually @@ -1320,7 +1320,7 @@ public class Jedis extends BinaryJedis implements JedisCommands { /** * Return the members of a set resulting from the union of all the sets hold - * at the specified keys. Like in {@link #lrange(String, int, int) LRANGE} + * at the specified keys. Like in {@link #lrange(String, long, long) LRANGE} * the result is sent to the client as a multi-bulk reply (see the protocol * specification for more information). If just a single key is specified, * then this command produces the same result as {@link #smembers(String)