Skip to content

Commit

Permalink
Polishing.
Browse files Browse the repository at this point in the history
Tweak Javadoc links.

Original Pull Request: spring-projects#2292
  • Loading branch information
mp911de authored and christophstrobl committed May 23, 2022
1 parent 2a4cf7a commit 1475069
Showing 1 changed file with 14 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,8 @@ default Long lexCount(org.springframework.data.redis.connection.RedisZSetCommand
}

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

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

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

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

/**
* Get all elements {@literal n} elements, where {@literal n = } {@link Limit#getCount()}, starting at
* {@link Limit#getOffset()} with reverse lexicographical ordering having a value between
* {@link Range#getLowerBound()} and {@link Range#getUpperBound()}.
* {@link Limit#getOffset()} with reverse lexicographical ordering from {@literal ZSET} having a value
* between {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMin()} and
* {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMax()}.
*
* @param range must not be {@literal null}.
* @param limit can be {@literal null}.
Expand Down

0 comments on commit 1475069

Please sign in to comment.