Uses of Class
org.apache.commons.lang3.Range
-
Packages that use Range Package Description org.apache.commons.lang3 Provides highly reusable static utility methods, chiefly concerned with adding value to thejava.langclasses. -
-
Uses of Range in org.apache.commons.lang3
Subclasses of Range in org.apache.commons.lang3 Modifier and Type Class Description classDoubleRangeSpecializesNumberRangeforDoubles.classIntegerRangeSpecializesNumberRangeforIntegers.classLongRangeSpecializesNumberRangeforLongs.classNumberRange<N extends Number>Methods in org.apache.commons.lang3 that return Range Modifier and Type Method Description static <T extends Comparable<? super T>>
Range<T>Range. between(T fromInclusive, T toInclusive)Deprecated.static <T> Range<T>Range. between(T fromInclusive, T toInclusive, Comparator<T> comparator)Deprecated.Range<T>Range. intersectionWith(Range<T> other)Calculate the intersection ofthisand an overlapping Range.static <T extends Comparable<? super T>>
Range<T>Range. is(T element)Creates a range using the specified element as both the minimum and maximum in this range.static <T> Range<T>Range. is(T element, Comparator<T> comparator)Creates a range using the specified element as both the minimum and maximum in this range.static <T extends Comparable<? super T>>
Range<T>Range. of(T fromInclusive, T toInclusive)Creates a range with the specified minimum and maximum values (both inclusive).static <T> Range<T>Range. of(T fromInclusive, T toInclusive, Comparator<T> comparator)Creates a range with the specified minimum and maximum values (both inclusive).Methods in org.apache.commons.lang3 with parameters of type Range Modifier and Type Method Description booleanRange. containsRange(Range<T> otherRange)Checks whether this range contains all the elements of the specified range.Range<T>Range. intersectionWith(Range<T> other)Calculate the intersection ofthisand an overlapping Range.booleanRange. isAfterRange(Range<T> otherRange)Checks whether this range is completely after the specified range.booleanRange. isBeforeRange(Range<T> otherRange)Checks whether this range is completely before the specified range.booleanRange. isOverlappedBy(Range<T> otherRange)Checks whether this range is overlapped by the specified range.
-