+ hopefully finally finished with the javadocs

This commit is contained in:
Costin Leau
2010-12-07 20:25:53 +02:00
parent 328841f0b9
commit 2e05ca43b6
7 changed files with 22 additions and 12 deletions

View File

@@ -56,11 +56,11 @@ public class DefaultSortParameters implements SortParameters {
* @param order
* @param alphabetic
*/
public DefaultSortParameters(byte[] by, Range limit, byte[] get, Order order, Boolean alphabetic) {
public DefaultSortParameters(byte[] byPattern, Range limit, byte[] getPattern, Order order, Boolean alphabetic) {
super();
this.byPattern = by;
this.byPattern = byPattern;
this.limit = limit;
this.getPattern = get;
this.getPattern = getPattern;
this.order = order;
this.alphabetic = alphabetic;
}

View File

@@ -59,7 +59,7 @@ public class JedisConnectionFactory implements InitializingBean, DisposableBean,
/**
* Constructs a new <code>JedisConnectionFactory</code> instance.
*
* @param hostname
* @param hostName
*/
public JedisConnectionFactory(String hostName) {
Assert.hasText(hostName);
@@ -69,7 +69,7 @@ public class JedisConnectionFactory implements InitializingBean, DisposableBean,
/**
* Constructs a new <code>JedisConnectionFactory</code> instance.
*
* @param hostname
* @param hostName
* @param port
*/
public JedisConnectionFactory(String hostName, int port) {

View File

@@ -1,5 +1,5 @@
/**
* <p/>Connection package for <a href="http://github.com/xetorthio/jedis">Jedis</a> library.
* Connection package for <a href="http://github.com/xetorthio/jedis">Jedis</a> library.
*/
package org.springframework.data.keyvalue.redis.connection.jedis;

View File

@@ -1,5 +1,5 @@
/**
* <p/>Connection package for <a href="http://github.com/alphazero/jredis">JRedis</a> library.
* Connection package for <a href="http://github.com/alphazero/jredis">JRedis</a> library.
*/
package org.springframework.data.keyvalue.redis.connection.jredis;

View File

@@ -0,0 +1,8 @@
/**
* Root package for integrating <a href="http://code.google.com/p/redis/">Redis</a> with Spring concepts.
* <p/>
* Provides Redis specific exception hierarchy on top of the {@code org.springframework.dao} package.
*
*/
package org.springframework.data.keyvalue.redis;

View File

@@ -22,8 +22,9 @@ import java.util.Set;
import java.util.SortedSet;
/**
* Redis ZSet contract. Acts as a {@link SortedSet} based on the given priorities. Since using a {@link Comparator}
* does not apply, a ZSet implements the {@link SortedSet} methods where applicable.
* Redis ZSet (or sorted set (by weight)). Acts as a {@link SortedSet} based on the given priorities or weights associated with each item.
* <p/>
* Since using a {@link Comparator} does not apply, a ZSet implements the {@link SortedSet} methods where applicable.
*
* @author Costin Leau
*/

View File

@@ -2,10 +2,11 @@
* Package providing implementations for most of the {@code java.util} collections on top of Redis.
* <p/>
* For indexed collections, such as {@link java.util.List}, {@link java.util.Queue} or {@link java.util.Deque}
* consider {@link RedisList}.<p/>
* For collections without duplicates the obvious candidate is {@link RedisSet}. Use {@link RedisZSet} if a
* consider {@link org.springframework.data.keyvalue.redis.support.collections.RedisList}.<p/>
* For collections without duplicates the obvious candidate is {@link org.springframework.data.keyvalue.redis.support.collections.RedisSet}. Use
* {@link org.springframework.data.keyvalue.redis.support.collections.RedisZSet} if a
* certain order is required.</p/>
* Lastly, for key/value associations {@link RedisMap} providing a Map-like abstraction on top of a Redis hash.
* Lastly, for key/value associations {@link org.springframework.data.keyvalue.redis.support.collections.RedisMap} providing a Map-like abstraction on top of a Redis hash.
*/
package org.springframework.data.keyvalue.redis.support.collections;