Uses of Class
io.lettuce.core.Range.Boundary
| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
-
Uses of Range.Boundary in io.lettuce.core
Methods in io.lettuce.core that return Range.Boundary Modifier and Type Method Description static <T> Range.Boundary<T>Range.Boundary. excluding(T value)Create aRange.Boundarybased on thevaluethat excludes the value when comparing ranges.Range.Boundary<T>Range. getLower()Range.Boundary<T>Range. getUpper()static <T> Range.Boundary<T>Range.Boundary. including(T value)Create aRange.Boundarybased on thevaluethat includes the value when comparing ranges.static <T> Range.Boundary<T>Range.Boundary. unbounded()Creates an unbounded (infinite) boundary that marks the beginning/end of the range.Methods in io.lettuce.core with parameters of type Range.Boundary Modifier and Type Method Description static <T> Range<T>Range. from(Range.Boundary<T> lower, Range.Boundary<T> upper)Create a new range fromlowerandupperboundaries.