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
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetMax()
Deprecated.getMin()
Deprecated.Deprecated.Greater ThanDeprecated.Greater Than EqualsDeprecated.Less ThanDeprecated.Less Then Equalsstatic RedisZSetCommands.Range
range()
Deprecated.<T> org.springframework.data.domain.Range<T>
toRange()
Deprecated.Create aRange
object from this range.static RedisZSetCommands.Range
Deprecated.
-
Constructor Details
-
Range
public Range()Deprecated.
-
-
Method Details
-
range
Deprecated.- Returns:
- new
Range
-
unbounded
Deprecated.- Returns:
- new
Range
with 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
public <T> org.springframework.data.domain.Range<T> toRange()Deprecated.Create aRange
object from this range.- Returns:
- a
Range
object using bounds from this range. - Since:
- 3.0
-
Range
ortoRange()
instead.