Class NumberRange
- All Implemented Interfaces:
Serializable
NumberRange
represents an inclusive range of
Number
objects of the same type.
- Since:
- 2.0 (previously in org.apache.commons.lang)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNumberRange
(Number num) Deprecated.Constructs a newNumberRange
using the specified number as both the minimum and maximum in this range.NumberRange
(Number num1, Number num2) Deprecated.Constructs a newNumberRange
with the specified minimum and maximum numbers (both inclusive). -
Method Summary
Modifier and TypeMethodDescriptionboolean
containsNumber
(Number number) Deprecated.Tests whether the specifiednumber
occurs within this range.boolean
Deprecated.Compares this range to another object to test if they are equal.Deprecated.Returns the maximum number in this range.Deprecated.Returns the minimum number in this range.int
hashCode()
Deprecated.Gets a hashCode for the range.toString()
Deprecated.Gets the range as aString
.Methods inherited from class org.apache.commons.lang.math.Range
containsDouble, containsDouble, containsFloat, containsFloat, containsInteger, containsInteger, containsLong, containsLong, containsRange, getMaximumDouble, getMaximumFloat, getMaximumInteger, getMaximumLong, getMinimumDouble, getMinimumFloat, getMinimumInteger, getMinimumLong, overlapsRange
-
Constructor Details
-
NumberRange
Deprecated.Constructs a new
NumberRange
using the specified number as both the minimum and maximum in this range.- Parameters:
num
- the number to use for this range- Throws:
IllegalArgumentException
- if the number isnull
IllegalArgumentException
- if the number doesn't implementComparable
IllegalArgumentException
- if the number isDouble.NaN
orFloat.NaN
-
NumberRange
Deprecated.Constructs a new
NumberRange
with the specified minimum and maximum numbers (both inclusive).The arguments may be passed in the order (min,max) or (max,min). The
getMinimumNumber()
andgetMaximumNumber()
methods will return the correct value.This constructor is designed to be used with two
Number
objects of the same type. If two objects of different types are passed in, an exception is thrown.- Parameters:
num1
- first number that defines the edge of the range, inclusivenum2
- second number that defines the edge of the range, inclusive- Throws:
IllegalArgumentException
- if either number isnull
IllegalArgumentException
- if the numbers are of different typesIllegalArgumentException
- if the numbers don't implementComparable
-
-
Method Details
-
getMinimumNumber
Deprecated.Returns the minimum number in this range.
- Specified by:
getMinimumNumber
in classRange
- Returns:
- the minimum number in this range
-
getMaximumNumber
Deprecated.Returns the maximum number in this range.
- Specified by:
getMaximumNumber
in classRange
- Returns:
- the maximum number in this range
-
containsNumber
Deprecated.Tests whether the specified
number
occurs within this range.null
is handled and returnsfalse
.- Specified by:
containsNumber
in classRange
- Parameters:
number
- the number to test, may benull
- Returns:
true
if the specified number occurs within this range- Throws:
IllegalArgumentException
- if the number is of a different type to the range
-
equals
Deprecated.Compares this range to another object to test if they are equal.
.To be equal, the class, minimum and maximum must be equal.
-
hashCode
public int hashCode()Deprecated.Gets a hashCode for the range.
-
toString
Deprecated.Gets the range as a
String
.The format of the String is 'Range[min,max]'.
-