Skip to content

Commit 1475069

Browse files
mp911dechristophstrobl
authored andcommitted
Polishing.
Tweak Javadoc links. Original Pull Request: #2292
1 parent 2a4cf7a commit 1475069

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

src/main/java/org/springframework/data/redis/core/BoundZSetOperations.java

+14-10
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,8 @@ default Long lexCount(org.springframework.data.redis.connection.RedisZSetCommand
310310
}
311311

312312
/**
313-
* Count number of elements within sorted set with value between {@code Range#min} and {@code Range#max} applying
314-
* lexicographical ordering.
313+
* Count number of elements within sorted set with value between {@link Range#getLowerBound()} and
314+
* {@link Range#getUpperBound()} applying lexicographical ordering.
315315
*
316316
* @param range must not be {@literal null}.
317317
* @return {@literal null} when used in pipeline / transaction.
@@ -836,8 +836,9 @@ default Set<TypedTuple<V>> unionWithScores(Collection<K> otherKeys, Aggregate ag
836836
Cursor<TypedTuple<V>> scan(ScanOptions options);
837837

838838
/**
839-
* Get all elements with lexicographical ordering with a value between {@link Range#getLowerBound()} and
840-
* {@link Range#getUpperBound()}.
839+
* Get all elements with lexicographical ordering with a value between
840+
* {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMin()} and
841+
* {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMax()}.
841842
*
842843
* @param range must not be {@literal null}.
843844
* @return {@literal null} when used in pipeline / transaction.
@@ -867,8 +868,9 @@ default Set<V> rangeByLex(Range<String> range) {
867868

868869
/**
869870
* Get all elements {@literal n} elements, where {@literal n = } {@link Limit#getCount()}, starting at
870-
* {@link Limit#getOffset()} with lexicographical ordering having a value between {@link Range#getLowerBound()} and
871-
* {@link Range#getUpperBound()}.
871+
* {@link Limit#getOffset()} with lexicographical ordering from {@literal ZSET} at {@code key} with a value between
872+
* {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMin()} and
873+
* {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMax()}.
872874
*
873875
* @param range must not be {@literal null}.
874876
* @param limit can be {@literal null}.
@@ -898,8 +900,9 @@ default Set<V> rangeByLex(org.springframework.data.redis.connection.RedisZSetCom
898900
Set<V> rangeByLex(Range<String> range, Limit limit);
899901

900902
/**
901-
* Get all elements with reverse lexicographical ordering with a value between {@link Range#getLowerBound()} and
902-
* {@link Range#getUpperBound()}.
903+
* Get all elements with reverse lexicographical ordering from {@literal ZSET} with a value between
904+
* {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMin()} and
905+
* {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMax()}.
903906
*
904907
* @param range must not be {@literal null}.
905908
* @return {@literal null} when used in pipeline / transaction.
@@ -929,8 +932,9 @@ default Set<V> reverseRangeByLex(Range<String> range) {
929932

930933
/**
931934
* Get all elements {@literal n} elements, where {@literal n = } {@link Limit#getCount()}, starting at
932-
* {@link Limit#getOffset()} with reverse lexicographical ordering having a value between
933-
* {@link Range#getLowerBound()} and {@link Range#getUpperBound()}.
935+
* {@link Limit#getOffset()} with reverse lexicographical ordering from {@literal ZSET} having a value
936+
* between {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMin()} and
937+
* {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMax()}.
934938
*
935939
* @param range must not be {@literal null}.
936940
* @param limit can be {@literal null}.

0 commit comments

Comments
 (0)