Spring Data Key-Value

Uses of Interface
org.springframework.data.keyvalue.redis.support.collections.RedisSet

Packages that use RedisSet
org.springframework.data.keyvalue.redis.support.collections Package providing implementations for most of the java.util collections on top of Redis. 
 

Uses of RedisSet in org.springframework.data.keyvalue.redis.support.collections
 

Classes in org.springframework.data.keyvalue.redis.support.collections that implement RedisSet
 class DefaultRedisSet<E>
          Default implementation for RedisSet.
 

Methods in org.springframework.data.keyvalue.redis.support.collections that return RedisSet
 RedisSet<E> RedisSet.diffAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 RedisSet<E> DefaultRedisSet.diffAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 RedisSet<E> RedisSet.diffAndStore(RedisSet<?> set, String destKey)
           
 RedisSet<E> DefaultRedisSet.diffAndStore(RedisSet<?> set, String destKey)
           
 RedisSet<E> RedisSet.intersectAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 RedisSet<E> DefaultRedisSet.intersectAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 RedisSet<E> RedisSet.intersectAndStore(RedisSet<?> set, String destKey)
           
 RedisSet<E> DefaultRedisSet.intersectAndStore(RedisSet<?> set, String destKey)
           
 RedisSet<E> RedisSet.unionAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 RedisSet<E> DefaultRedisSet.unionAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 RedisSet<E> RedisSet.unionAndStore(RedisSet<?> set, String destKey)
           
 RedisSet<E> DefaultRedisSet.unionAndStore(RedisSet<?> set, String destKey)
           
 

Methods in org.springframework.data.keyvalue.redis.support.collections with parameters of type RedisSet
 Set<E> RedisSet.diff(RedisSet<?> set)
           
 Set<E> DefaultRedisSet.diff(RedisSet<?> set)
           
 RedisSet<E> RedisSet.diffAndStore(RedisSet<?> set, String destKey)
           
 RedisSet<E> DefaultRedisSet.diffAndStore(RedisSet<?> set, String destKey)
           
 Set<E> RedisSet.intersect(RedisSet<?> set)
           
 Set<E> DefaultRedisSet.intersect(RedisSet<?> set)
           
 RedisSet<E> RedisSet.intersectAndStore(RedisSet<?> set, String destKey)
           
 RedisSet<E> DefaultRedisSet.intersectAndStore(RedisSet<?> set, String destKey)
           
 Set<E> RedisSet.union(RedisSet<?> set)
           
 Set<E> DefaultRedisSet.union(RedisSet<?> set)
           
 RedisSet<E> RedisSet.unionAndStore(RedisSet<?> set, String destKey)
           
 RedisSet<E> DefaultRedisSet.unionAndStore(RedisSet<?> set, String destKey)
           
 

Method parameters in org.springframework.data.keyvalue.redis.support.collections with type arguments of type RedisSet
 Set<E> RedisSet.diff(Collection<? extends RedisSet<?>> sets)
           
 Set<E> DefaultRedisSet.diff(Collection<? extends RedisSet<?>> sets)
           
 RedisSet<E> RedisSet.diffAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 RedisSet<E> DefaultRedisSet.diffAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 Set<E> RedisSet.intersect(Collection<? extends RedisSet<?>> sets)
           
 Set<E> DefaultRedisSet.intersect(Collection<? extends RedisSet<?>> sets)
           
 RedisSet<E> RedisSet.intersectAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 RedisSet<E> DefaultRedisSet.intersectAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 Set<E> RedisSet.union(Collection<? extends RedisSet<?>> sets)
           
 Set<E> DefaultRedisSet.union(Collection<? extends RedisSet<?>> sets)
           
 RedisSet<E> RedisSet.unionAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 RedisSet<E> DefaultRedisSet.unionAndStore(Collection<? extends RedisSet<?>> sets, String destKey)
           
 


Spring Data Key-Value

Copyright © 2010-2011 SpringSource. All Rights Reserved.