Spring Data Key-Value

Uses of Interface
org.springframework.data.keyvalue.redis.connection.RedisZSetCommands.Tuple

Packages that use RedisZSetCommands.Tuple
org.springframework.data.keyvalue.redis.connection Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries. 
org.springframework.data.keyvalue.redis.connection.jedis Connection package for Jedis library. 
org.springframework.data.keyvalue.redis.connection.jredis Connection package for JRedis library. 
org.springframework.data.keyvalue.redis.connection.rjc Connection package for RJC library. 
 

Uses of RedisZSetCommands.Tuple in org.springframework.data.keyvalue.redis.connection
 

Subinterfaces of RedisZSetCommands.Tuple in org.springframework.data.keyvalue.redis.connection
static interface StringRedisConnection.StringTuple
          String-friendly ZSet tuple.
 

Classes in org.springframework.data.keyvalue.redis.connection that implement RedisZSetCommands.Tuple
 class DefaultStringTuple
          Default implementation for StringRedisConnection.StringTuple interface.
 class DefaultTuple
          Default implementation for RedisZSetCommands.Tuple interface.
 

Methods in org.springframework.data.keyvalue.redis.connection that return types with arguments of type RedisZSetCommands.Tuple
 Set<RedisZSetCommands.Tuple> RedisZSetCommands.zRangeByScoreWithScore(byte[] key, double min, double max)
           
 Set<RedisZSetCommands.Tuple> DefaultStringRedisConnection.zRangeByScoreWithScore(byte[] key, double min, double max)
           
 Set<RedisZSetCommands.Tuple> RedisZSetCommands.zRangeByScoreWithScore(byte[] key, double min, double max, long offset, long count)
           
 Set<RedisZSetCommands.Tuple> DefaultStringRedisConnection.zRangeByScoreWithScore(byte[] key, double min, double max, long offset, long count)
           
 Set<RedisZSetCommands.Tuple> RedisZSetCommands.zRangeWithScore(byte[] key, long begin, long end)
           
 Set<RedisZSetCommands.Tuple> DefaultStringRedisConnection.zRangeWithScore(byte[] key, long start, long end)
           
 Set<RedisZSetCommands.Tuple> RedisZSetCommands.zRevRangeWithScore(byte[] key, long begin, long end)
           
 Set<RedisZSetCommands.Tuple> DefaultStringRedisConnection.zRevRangeWithScore(byte[] key, long start, long end)
           
 

Constructors in org.springframework.data.keyvalue.redis.connection with parameters of type RedisZSetCommands.Tuple
DefaultStringTuple(RedisZSetCommands.Tuple tuple, String valueAsString)
          Constructs a new DefaultStringTuple instance.
 

Uses of RedisZSetCommands.Tuple in org.springframework.data.keyvalue.redis.connection.jedis
 

Methods in org.springframework.data.keyvalue.redis.connection.jedis that return types with arguments of type RedisZSetCommands.Tuple
 Set<RedisZSetCommands.Tuple> JedisConnection.zRangeByScoreWithScore(byte[] key, double min, double max)
           
 Set<RedisZSetCommands.Tuple> JedisConnection.zRangeByScoreWithScore(byte[] key, double min, double max, long offset, long count)
           
 Set<RedisZSetCommands.Tuple> JedisConnection.zRangeWithScore(byte[] key, long start, long end)
           
 Set<RedisZSetCommands.Tuple> JedisConnection.zRevRangeWithScore(byte[] key, long start, long end)
           
 

Uses of RedisZSetCommands.Tuple in org.springframework.data.keyvalue.redis.connection.jredis
 

Methods in org.springframework.data.keyvalue.redis.connection.jredis that return types with arguments of type RedisZSetCommands.Tuple
 Set<RedisZSetCommands.Tuple> JredisConnection.zRangeByScoreWithScore(byte[] key, double min, double max)
           
 Set<RedisZSetCommands.Tuple> JredisConnection.zRangeByScoreWithScore(byte[] key, double min, double max, long offset, long count)
           
 Set<RedisZSetCommands.Tuple> JredisConnection.zRangeWithScore(byte[] key, long start, long end)
           
 Set<RedisZSetCommands.Tuple> JredisConnection.zRevRangeWithScore(byte[] key, long start, long end)
           
 

Uses of RedisZSetCommands.Tuple in org.springframework.data.keyvalue.redis.connection.rjc
 

Methods in org.springframework.data.keyvalue.redis.connection.rjc that return types with arguments of type RedisZSetCommands.Tuple
 Set<RedisZSetCommands.Tuple> RjcConnection.zRangeByScoreWithScore(byte[] key, double min, double max)
           
 Set<RedisZSetCommands.Tuple> RjcConnection.zRangeByScoreWithScore(byte[] key, double min, double max, long offset, long count)
           
 Set<RedisZSetCommands.Tuple> RjcConnection.zRangeWithScore(byte[] key, long start, long end)
           
 Set<RedisZSetCommands.Tuple> RjcConnection.zRevRangeWithScore(byte[] key, long start, long end)
           
 


Spring Data Key-Value

Copyright © 2010-2011 SpringSource. All Rights Reserved.