Class RedisZSetCommands.Range
java.lang.Object
org.springframework.data.redis.connection.RedisZSetCommands.Range
- Enclosing interface:
 - RedisZSetCommands
 
Deprecated.
Range defines min and max values to retrieve from a
 ZSET.- Since:
 - 1.6
 - Author:
 - Christoph Strobl
 
- 
Nested Class Summary
Nested Classes - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptiongetMax()Deprecated.getMin()Deprecated.Deprecated.Greater ThanDeprecated.Greater Than EqualsDeprecated.Less ThanDeprecated.Less Then Equalsstatic RedisZSetCommands.Rangerange()Deprecated.<T> Range<T>toRange()Deprecated.Create aRangeobject from this range.static RedisZSetCommands.RangeDeprecated. 
- 
Constructor Details
- 
Range
public Range()Deprecated. 
 - 
 - 
Method Details
- 
range
Deprecated.- Returns:
 - new 
Range 
 - 
unbounded
Deprecated.- Returns:
 - new 
Rangewith min and max set toRedisZSetCommands.Range.Boundary.infinite(). 
 - 
gte
Deprecated.Greater Than Equals- Parameters:
 min- must not be null.- Returns:
 - this.
 
 - 
gt
Deprecated.Greater Than- Parameters:
 min- must not be null.- Returns:
 - this.
 
 - 
lte
Deprecated.Less Then Equals- Parameters:
 max- must not be null.- Returns:
 - this.
 
 - 
lt
Deprecated.Less Than- Parameters:
 max- must not be null.- Returns:
 - this.
 
 - 
getMin
Deprecated.- Returns:
 - null if not set.
 
 - 
getMax
Deprecated.- Returns:
 - null if not set.
 
 - 
toRange
Deprecated.Create aRangeobject from this range.- Returns:
 - a 
Rangeobject using bounds from this range. - Since:
 - 3.0
 
 
 - 
 
RangeortoRange()instead.