|
||||||||||
PREV NEXT | FRAMES NO FRAMES All Classes |
Packages that use Range | |
---|---|
org.apache.commons.lang3 | Provides highly reusable static utility methods, chiefly concerned
with adding value to the java.lang classes. |
Uses of Range in org.apache.commons.lang3 |
---|
Methods in org.apache.commons.lang3 that return Range | ||
---|---|---|
static
|
Range.between(T element1,
T element2)
Constructs a new Range with the specified
minimum and maximum values (both inclusive). |
|
static
|
Range.between(T element1,
T element2,
Comparator<T> c)
Constructs a new Range with the specified
minimum and maximum values (both inclusive). |
|
static
|
Range.is(T element)
Constructs a new Range using the specified
element as both the minimum and maximum in this range. |
|
static
|
Range.is(T element,
Comparator<T> c)
Constructs a new Range using the specified
element as both the minimum and maximum in this range. |
Methods in org.apache.commons.lang3 with parameters of type Range | |
---|---|
boolean |
Range.containsRange(Range<T> range)
Tests whether the specified range occurs entirely within this range. |
boolean |
Range.overlapsRange(Range<T> range)
Tests whether the specified range overlaps with this range. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES All Classes |