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 SummaryNested Classes
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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- 
Rangepublic Range()Deprecated.
 
- 
- 
Method Details- 
rangeDeprecated.- Returns:
- new Range
 
- 
unboundedDeprecated.- Returns:
- new Rangewith min and max set toRedisZSetCommands.Range.Boundary.infinite().
 
- 
gteDeprecated.Greater Than Equals- Parameters:
- min- must not be null.
- Returns:
- this.
 
- 
gtDeprecated.Greater Than- Parameters:
- min- must not be null.
- Returns:
- this.
 
- 
lteDeprecated.Less Then Equals- Parameters:
- max- must not be null.
- Returns:
- this.
 
- 
ltDeprecated.Less Than- Parameters:
- max- must not be null.
- Returns:
- this.
 
- 
getMinDeprecated.- Returns:
- null if not set.
 
- 
getMaxDeprecated.- Returns:
- null if not set.
 
- 
toRangeDeprecated.Create aRangeobject from this range.- Returns:
- a Rangeobject using bounds from this range.
- Since:
- 3.0
 
 
- 
RangeortoRange()instead.