Uses of Class
org.jooq.lambda.tuple.Range
-
Packages that use Range Package Description org.jooq.lambda.tuple This package contains tuple types of various degrees. -
-
Uses of Range in org.jooq.lambda.tuple
Methods in org.jooq.lambda.tuple that return Range Modifier and Type Method Description static <T extends java.lang.Comparable<T>>
Range<T>Tuple. range(T lowerInclusive, T upperInclusive)
Create a new range with inclusive bounds.Methods in org.jooq.lambda.tuple that return types with arguments of type Range Modifier and Type Method Description java.util.Optional<Range<T>>
Range. intersect(Range<T> other)
The intersection of two ranges.java.util.Optional<Range<T>>
Range. intersect(Tuple2<T,T> other)
Deprecated.- Useintersect(Range)
instead.java.util.Optional<Range<T>>
Range. intersect(T lowerInclusive, T upperInclusive)
The intersection of two ranges.Methods in org.jooq.lambda.tuple with parameters of type Range Modifier and Type Method Description boolean
Range. contains(Range<T> other)
Whether a range is contained in this range.java.util.Optional<Range<T>>
Range. intersect(Range<T> other)
The intersection of two ranges.boolean
Range. overlaps(Range<T> other)
Whether two ranges overlap.
-