T
- The type of range values.public class Range<T>
extends java.lang.Object
implements java.io.Serializable
The objects need to either be implementations of Comparable
or you need to supply a Comparator
.
#ThreadSafe# if the objects and comparator are thread-safe.
Modifier and Type | Method and Description |
---|---|
static <T extends java.lang.Comparable<? super T>> |
between(T fromInclusive,
T toInclusive)
Deprecated.
|
static <T> Range<T> |
between(T fromInclusive,
T toInclusive,
java.util.Comparator<T> comparator)
Deprecated.
|
boolean |
contains(T element)
Checks whether the specified element occurs within this range.
|
boolean |
containsRange(Range<T> otherRange)
Checks whether this range contains all the elements of the specified range.
|
int |
elementCompareTo(T element)
Checks where the specified element occurs relative to this range.
|
boolean |
equals(java.lang.Object obj)
Compares this range to another object to test if they are equal..
|
T |
fit(T element)
Fits the given element into this range by returning the given element or, if out of bounds, the range minimum if
below, or the range maximum if above.
|
java.util.Comparator<T> |
getComparator()
Gets the comparator being used to determine if objects are within the range.
|
T |
getMaximum()
Gets the maximum value in this range.
|
T |
getMinimum()
Gets the minimum value in this range.
|
int |
hashCode()
Gets a suitable hash code for the range.
|
Range<T> |
intersectionWith(Range<T> other)
Calculate the intersection of
this and an overlapping Range. |
static <T extends java.lang.Comparable<? super T>> |
is(T element)
Creates a range using the specified element as both the minimum
and maximum in this range.
|
static <T> Range<T> |
is(T element,
java.util.Comparator<T> comparator)
Creates a range using the specified element as both the minimum
and maximum in this range.
|
boolean |
isAfter(T element)
Checks whether this range is after the specified element.
|
boolean |
isAfterRange(Range<T> otherRange)
Checks whether this range is completely after the specified range.
|
boolean |
isBefore(T element)
Checks whether this range is before the specified element.
|
boolean |
isBeforeRange(Range<T> otherRange)
Checks whether this range is completely before the specified range.
|
boolean |
isEndedBy(T element)
Checks whether this range ends with the specified element.
|
boolean |
isNaturalOrdering()
Whether or not the Range is using the natural ordering of the elements.
|
boolean |
isOverlappedBy(Range<T> otherRange)
Checks whether this range is overlapped by the specified range.
|
boolean |
isStartedBy(T element)
Checks whether this range starts with the specified element.
|
static <T extends java.lang.Comparable<? super T>> |
of(T fromInclusive,
T toInclusive)
Creates a range with the specified minimum and maximum values (both inclusive).
|
static <T> Range<T> |
of(T fromInclusive,
T toInclusive,
java.util.Comparator<T> comparator)
Creates a range with the specified minimum and maximum values (both inclusive).
|
java.lang.String |
toString()
Gets the range as a
String . |
java.lang.String |
toString(java.lang.String format)
Formats the receiver using the given format.
|
@Deprecated public static <T extends java.lang.Comparable<? super T>> Range<T> between(T fromInclusive, T toInclusive)
of(Comparable, Comparable)
.The range uses the natural ordering of the elements to determine where values lie in the range.
The arguments may be passed in the order (min,max) or (max,min). The getMinimum and getMaximum methods will return the correct values.
T
- the type of the elements in this rangefromInclusive
- the first value that defines the edge of the range, inclusivetoInclusive
- the second value that defines the edge of the range, inclusivejava.lang.NullPointerException
- when fromInclusive is null.java.lang.NullPointerException
- when toInclusive is null.java.lang.ClassCastException
- if the elements are not Comparable
@Deprecated public static <T> Range<T> between(T fromInclusive, T toInclusive, java.util.Comparator<T> comparator)
of(Object, Object, Comparator)
.The range uses the specified Comparator
to determine where
values lie in the range.
The arguments may be passed in the order (min,max) or (max,min). The getMinimum and getMaximum methods will return the correct values.
T
- the type of the elements in this rangefromInclusive
- the first value that defines the edge of the range, inclusivetoInclusive
- the second value that defines the edge of the range, inclusivecomparator
- the comparator to be used, null for natural orderingjava.lang.NullPointerException
- when fromInclusive is null.java.lang.NullPointerException
- when toInclusive is null.java.lang.ClassCastException
- if using natural ordering and the elements are not Comparable
public static <T extends java.lang.Comparable<? super T>> Range<T> is(T element)
The range uses the natural ordering of the elements to determine where values lie in the range.
T
- the type of the elements in this rangeelement
- the value to use for this range, not nulljava.lang.NullPointerException
- if the element is nulljava.lang.ClassCastException
- if the element is not Comparable
public static <T> Range<T> is(T element, java.util.Comparator<T> comparator)
The range uses the specified Comparator
to determine where
values lie in the range.
T
- the type of the elements in this rangeelement
- the value to use for this range, must not be null
comparator
- the comparator to be used, null for natural orderingjava.lang.NullPointerException
- if the element is nulljava.lang.ClassCastException
- if using natural ordering and the elements are not Comparable
public static <T extends java.lang.Comparable<? super T>> Range<T> of(T fromInclusive, T toInclusive)
The range uses the natural ordering of the elements to determine where values lie in the range.
The arguments may be passed in the order (min,max) or (max,min). The getMinimum and getMaximum methods will return the correct values.
T
- the type of the elements in this rangefromInclusive
- the first value that defines the edge of the range, inclusivetoInclusive
- the second value that defines the edge of the range, inclusivejava.lang.NullPointerException
- if either element is nulljava.lang.ClassCastException
- if the elements are not Comparable
public static <T> Range<T> of(T fromInclusive, T toInclusive, java.util.Comparator<T> comparator)
The range uses the specified Comparator
to determine where
values lie in the range.
The arguments may be passed in the order (min,max) or (max,min). The getMinimum and getMaximum methods will return the correct values.
T
- the type of the elements in this rangefromInclusive
- the first value that defines the edge of the range, inclusivetoInclusive
- the second value that defines the edge of the range, inclusivecomparator
- the comparator to be used, null for natural orderingjava.lang.NullPointerException
- when fromInclusive is null.java.lang.NullPointerException
- when toInclusive is null.java.lang.ClassCastException
- if using natural ordering and the elements are not Comparable
public boolean contains(T element)
element
- the element to check for, null returns falsepublic boolean containsRange(Range<T> otherRange)
This method may fail if the ranges have two different comparators or element types.
otherRange
- the range to check, null returns falsejava.lang.RuntimeException
- if ranges cannot be comparedpublic int elementCompareTo(T element)
The API is reminiscent of the Comparable interface returning -1
if
the element is before the range, 0
if contained within the range and
1
if the element is after the range.
element
- the element to check for, not nulljava.lang.NullPointerException
- if element
is null
public boolean equals(java.lang.Object obj)
To be equal, the minimum and maximum values must be equal, which ignores any differences in the comparator.
equals
in class java.lang.Object
obj
- the reference object with which to comparepublic T fit(T element)
Range<Integer> range = Range.between(16, 64); range.fit(-9) --> 16 range.fit(0) --> 16 range.fit(15) --> 16 range.fit(16) --> 16 range.fit(17) --> 17 ... range.fit(63) --> 63 range.fit(64) --> 64 range.fit(99) --> 64
element
- the element to check for, not nulljava.lang.NullPointerException
- if element
is null
public java.util.Comparator<T> getComparator()
Natural ordering uses an internal comparator implementation, thus this
method never returns null. See isNaturalOrdering()
.
public T getMaximum()
public T getMinimum()
public int hashCode()
hashCode
in class java.lang.Object
public Range<T> intersectionWith(Range<T> other)
this
and an overlapping Range.other
- overlapping Rangethis
and other
(this
if equal)java.lang.IllegalArgumentException
- if other
does not overlap this
public boolean isAfter(T element)
element
- the element to check for, null returns falsepublic boolean isAfterRange(Range<T> otherRange)
This method may fail if the ranges have two different comparators or element types.
otherRange
- the range to check, null returns falsejava.lang.RuntimeException
- if ranges cannot be comparedpublic boolean isBefore(T element)
element
- the element to check for, null returns falsepublic boolean isBeforeRange(Range<T> otherRange)
This method may fail if the ranges have two different comparators or element types.
otherRange
- the range to check, null returns falsejava.lang.RuntimeException
- if ranges cannot be comparedpublic boolean isEndedBy(T element)
element
- the element to check for, null returns falsepublic boolean isNaturalOrdering()
Natural ordering uses an internal comparator implementation, thus this method is the only way to check if a null comparator was specified.
public boolean isOverlappedBy(Range<T> otherRange)
Two ranges overlap if there is at least one element in common.
This method may fail if the ranges have two different comparators or element types.
otherRange
- the range to test, null returns falsefalse
java.lang.RuntimeException
- if ranges cannot be comparedpublic boolean isStartedBy(T element)
element
- the element to check for, null returns falsepublic java.lang.String toString()
String
.
The format of the String is '[min..max]'.
toString
in class java.lang.Object
String
representation of this rangepublic java.lang.String toString(java.lang.String format)
This uses Formattable
to perform the formatting. Three variables may
be used to embed the minimum, maximum and comparator.
Use %1$s
for the minimum element, %2$s
for the maximum element
and %3$s
for the comparator.
The default format used by toString()
is [%1$s..%2$s]
.
format
- the format string, optionally containing %1$s
, %2$s
and %3$s
, not nullCopyright © 2010 - 2023 Adobe. All Rights Reserved