Skip to content

Commit

Permalink
Polishing #1506
Browse files Browse the repository at this point in the history
Fix Javadoc parameter references, use AtCode syntax instead of HTML angled brackets <…>.

Original pull request: #1581.
  • Loading branch information
mp911de committed Jan 14, 2021
1 parent fb2d739 commit 43b594d
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,8 @@ public interface RedisSortedSetAsyncCommands<K, V> {
RedisFuture<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the
* {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -741,7 +742,8 @@ public interface RedisSortedSetAsyncCommands<K, V> {
RedisFuture<Long> zrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the
* {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down Expand Up @@ -1205,7 +1207,8 @@ public interface RedisSortedSetAsyncCommands<K, V> {
RedisFuture<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at {@code srcKey} and stores
* the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -1216,7 +1219,8 @@ public interface RedisSortedSetAsyncCommands<K, V> {
RedisFuture<Long> zrevrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> with scores ordered from high to low and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} with scores ordered from high to low and
* stores the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,8 @@ public interface RedisSortedSetReactiveCommands<K, V> {
Mono<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the
* {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -763,7 +764,8 @@ public interface RedisSortedSetReactiveCommands<K, V> {
Mono<Long> zrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the
* {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down Expand Up @@ -1247,7 +1249,8 @@ public interface RedisSortedSetReactiveCommands<K, V> {
Mono<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at {@code srcKey} and stores
* the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -1258,7 +1261,8 @@ public interface RedisSortedSetReactiveCommands<K, V> {
Mono<Long> zrevrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> with scores ordered from high to low and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} with scores ordered from high to low and
* stores the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,8 @@ public interface RedisSortedSetCommands<K, V> {
Long zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the
* {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -741,7 +742,8 @@ public interface RedisSortedSetCommands<K, V> {
Long zrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the
* {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down Expand Up @@ -1205,7 +1207,8 @@ public interface RedisSortedSetCommands<K, V> {
Long zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at {@code srcKey} and stores
* the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -1216,7 +1219,8 @@ public interface RedisSortedSetCommands<K, V> {
Long zrevrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> with scores ordered from high to low and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} with scores ordered from high to low and
* stores the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,8 @@ public interface NodeSelectionSortedSetAsyncCommands<K, V> {
AsyncExecutions<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the
* {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -741,7 +742,8 @@ public interface NodeSelectionSortedSetAsyncCommands<K, V> {
AsyncExecutions<Long> zrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the
* {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down Expand Up @@ -1205,7 +1207,8 @@ public interface NodeSelectionSortedSetAsyncCommands<K, V> {
AsyncExecutions<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at {@code srcKey} and stores
* the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -1216,7 +1219,8 @@ public interface NodeSelectionSortedSetAsyncCommands<K, V> {
AsyncExecutions<Long> zrevrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> with scores ordered from high to low and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} with scores ordered from high to low and
* stores the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,8 @@ public interface NodeSelectionSortedSetCommands<K, V> {
Executions<Long> zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the
* {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -741,7 +742,8 @@ public interface NodeSelectionSortedSetCommands<K, V> {
Executions<Long> zrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the
* {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down Expand Up @@ -1205,7 +1207,8 @@ public interface NodeSelectionSortedSetCommands<K, V> {
Executions<Long> zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at {@code srcKey} and stores
* the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -1216,7 +1219,8 @@ public interface NodeSelectionSortedSetCommands<K, V> {
Executions<Long> zrevrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> with scores ordered from high to low and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} with scores ordered from high to low and
* stores the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ interface RedisSortedSetCoroutinesCommands<K : Any, V : Any> {
fun zrangebyscoreWithScores(key: K, range: Range<out Number>, limit: Limit): Flow<ScoredValue<V>>

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -397,7 +397,7 @@ interface RedisSortedSetCoroutinesCommands<K : Any, V : Any> {
suspend fun zrangestorebylex(dstKey: K, srcKey: K, range: Range<out V>, limit: Limit): Long?

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down Expand Up @@ -542,7 +542,7 @@ interface RedisSortedSetCoroutinesCommands<K : Any, V : Any> {
fun zrevrangebyscoreWithScores(key: K, range: Range<out Number>, limit: Limit): Flow<ScoredValue<V>>

/**
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at {@code srcKey} and stores the result in the {@code dstKey} destination key.
*
* @param dstKey the src key.
* @param srcKey the dst key.
Expand All @@ -553,7 +553,7 @@ interface RedisSortedSetCoroutinesCommands<K : Any, V : Any> {
suspend fun zrevrangestorebylex(dstKey: K, srcKey: K, range: Range<out V>, limit: Limit): Long?

/**
* Get the specified range of elements in the sorted set stored at <srcKey> with scores ordered from high to low and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} with scores ordered from high to low and stores the result in the {@code dstKey} destination key.
*
* @param dstKey the src key.
* @param srcKey the dst key.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ Long zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Stri
Long zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand All @@ -742,7 +742,7 @@ Long zrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Stri
Long zrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey} and stores the result in the {@code dstKey} destination key.
*
* @param dstKey the dst key.
* @param srcKey the src key.
Expand Down Expand Up @@ -1208,7 +1208,7 @@ Long zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, S
Long zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, Range<? extends Number> range, Limit limit);

/**
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at <srcKey> and stores the result in the <dstKey> destination key.
* Get the lexicographical range ordered from high to low of elements in the sorted set stored at {@code srcKey} and stores the result in the {@code dstKey} destination key.
*
* @param dstKey the src key.
* @param srcKey the dst key.
Expand All @@ -1219,7 +1219,7 @@ Long zrevrangebyscoreWithScores(ScoredValueStreamingChannel<V> channel, K key, S
Long zrevrangestorebylex(K dstKey, K srcKey, Range<? extends V> range, Limit limit);

/**
* Get the specified range of elements in the sorted set stored at <srcKey> with scores ordered from high to low and stores the result in the <dstKey> destination key.
* Get the specified range of elements in the sorted set stored at {@code srcKey with scores ordered from high to low and stores the result in the {@code dstKey} destination key.
*
* @param dstKey the src key.
* @param srcKey the dst key.
Expand Down

0 comments on commit 43b594d

Please sign in to comment.