Class ScoreRange<T extends Number>
- java.lang.Object
-
- io.quarkus.redis.datasource.sortedset.ScoreRange<T>
-
-
Field Summary
Fields Modifier and Type Field Description static ScoreRange<?>UNBOUNDED
-
Constructor Summary
Constructors Constructor Description ScoreRange(T min, boolean inclusiveMin, T max, boolean inclusiveMax)ScoreRange(T min, T max)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ScoreRange<Double>from(double min, double max)static ScoreRange<Double>from(int min, int max)static ScoreRange<Double>from(long min, long max)StringgetLowerBound()StringgetUpperBound()booleanisUnbounded()static ScoreRange<Double>unbounded()
-
-
-
Field Detail
-
UNBOUNDED
public static final ScoreRange<?> UNBOUNDED
-
-
Method Detail
-
from
public static ScoreRange<Double> from(int min, int max)
-
from
public static ScoreRange<Double> from(long min, long max)
-
from
public static ScoreRange<Double> from(double min, double max)
-
unbounded
public static ScoreRange<Double> unbounded()
-
isUnbounded
public boolean isUnbounded()
-
getLowerBound
public String getLowerBound()
-
getUpperBound
public String getUpperBound()
-
-