Package me.datafox.dfxengine.math.utils
Class Range
java.lang.Object
me.datafox.dfxengine.math.utils.Range
Various math operations for checking the ranges of
Numerals
.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final BigDecimal
BigDecimal
representation ofDouble.MAX_VALUE
.static final BigDecimal
BigDecimal
representation ofFloat.MAX_VALUE
.static final BigDecimal
BigDecimal
representation ofInteger.MAX_VALUE
.static final BigDecimal
BigDecimal
representation ofLong.MAX_VALUE
.static final BigDecimal
BigDecimal
representation of-Double.MAX_VALUE
.static final BigDecimal
BigDecimal
representation of-Float.MAX_VALUE
.static final BigDecimal
BigDecimal
representation ofInteger.MIN_VALUE
.static final BigDecimal
BigDecimal
representation ofLong.MIN_VALUE
.static final BigInteger
BigInteger
representation ofDouble.MAX_VALUE
.static final BigInteger
BigInteger
representation ofFloat.MAX_VALUE
.static final BigInteger
BigInteger
representation ofInteger.MAX_VALUE
.static final BigInteger
BigInteger
representation ofLong.MAX_VALUE
.static final BigInteger
BigInteger
representation of-Double.MAX_VALUE
.static final BigInteger
BigInteger
representation of-Float.MAX_VALUE
.static final BigInteger
BigInteger
representation ofInteger.MIN_VALUE
.static final BigInteger
BigInteger
representation ofLong.MIN_VALUE
. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
static boolean
static boolean
isOutOfDoubleRange
(Numeral numeral) static boolean
isOutOfFloatRange
(double d) static boolean
static boolean
static boolean
isOutOfFloatRange
(Numeral numeral) static boolean
isOutOfIntRange
(double d) static boolean
isOutOfIntRange
(float f) static boolean
isOutOfIntRange
(long l) static boolean
static boolean
static boolean
isOutOfIntRange
(Numeral numeral) static boolean
isOutOfLongRange
(double d) static boolean
isOutOfLongRange
(float f) static boolean
static boolean
static boolean
isOutOfLongRange
(Numeral numeral) static boolean
isOutOfRange
(Numeral numeral, NumeralType type)
-
Field Details
-
INT_MIN_INT
BigInteger
representation ofInteger.MIN_VALUE
. -
INT_MAX_INT
BigInteger
representation ofInteger.MAX_VALUE
. -
INT_MIN_LONG
BigInteger
representation ofLong.MIN_VALUE
. -
INT_MAX_LONG
BigInteger
representation ofLong.MAX_VALUE
. -
DEC_MIN_INT
BigDecimal
representation ofInteger.MIN_VALUE
. -
DEC_MAX_INT
BigDecimal
representation ofInteger.MAX_VALUE
. -
DEC_MIN_LONG
BigDecimal
representation ofLong.MIN_VALUE
. -
DEC_MAX_LONG
BigDecimal
representation ofLong.MAX_VALUE
. -
DEC_MIN_FLOAT
BigDecimal
representation of-Float.MAX_VALUE
. -
DEC_MAX_FLOAT
BigDecimal
representation ofFloat.MAX_VALUE
. -
DEC_MIN_DOUBLE
BigDecimal
representation of-Double.MAX_VALUE
. -
DEC_MAX_DOUBLE
BigDecimal
representation ofDouble.MAX_VALUE
. -
INT_MIN_FLOAT
BigInteger
representation of-Float.MAX_VALUE
. -
INT_MAX_FLOAT
BigInteger
representation ofFloat.MAX_VALUE
. -
INT_MIN_DOUBLE
BigInteger
representation of-Double.MAX_VALUE
. -
INT_MAX_DOUBLE
BigInteger
representation ofDouble.MAX_VALUE
.
-
-
Constructor Details
-
Range
public Range()
-
-
Method Details
-
isOutOfRange
- Parameters:
numeral
-Numeral
to be checkedtype
- type to be checked- Returns:
true
if the specifiedNumeral
is outside the allowed range of the type- Throws:
NullPointerException
- if the specified type isnull
or if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if the specified type is notnull
or if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
isOutOfIntRange
- Parameters:
numeral
-Numeral
to be checked- Returns:
true
if the specifiedNumeral
is smaller thanInteger.MIN_VALUE
or greater thanInteger.MAX_VALUE
- Throws:
NullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
isOutOfLongRange
- Parameters:
numeral
-Numeral
to be checked- Returns:
true
if the specifiedNumeral
is smaller thanLong.MIN_VALUE
or greater thanLong.MAX_VALUE
- Throws:
NullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
isOutOfFloatRange
- Parameters:
numeral
-Numeral
to be checked- Returns:
true
if the specifiedNumeral
is smaller than-Float.MAX_VALUE
or greater thanFloat.MAX_VALUE
- Throws:
NullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
isOutOfDoubleRange
- Parameters:
numeral
-Numeral
to be checked- Returns:
true
if the specifiedNumeral
is smaller than-Double.MAX_VALUE
or greater thanDouble.MAX_VALUE
- Throws:
NullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
isOutOfIntRange
public static boolean isOutOfIntRange(long l) - Parameters:
l
-long
to be checked- Returns:
true
if thelong
is smaller thanInteger.MIN_VALUE
or greater thanInteger.MAX_VALUE
-
isOutOfIntRange
- Parameters:
bi
-BigInteger
to be checked- Returns:
true
if theBigInteger
is smaller thanInteger.MIN_VALUE
or greater thanInteger.MAX_VALUE
-
isOutOfIntRange
public static boolean isOutOfIntRange(float f) - Parameters:
f
-float
to be checked- Returns:
true
if thefloat
is smaller thanInteger.MIN_VALUE
or greater thanInteger.MAX_VALUE
-
isOutOfIntRange
public static boolean isOutOfIntRange(double d) - Parameters:
d
-double
to be checked- Returns:
true
if thedouble
is smaller thanInteger.MIN_VALUE
or greater thanInteger.MAX_VALUE
-
isOutOfIntRange
- Parameters:
bd
-BigDecimal
to be checked- Returns:
true
if theBigDecimal
is smaller thanInteger.MIN_VALUE
or greater thanInteger.MAX_VALUE
-
isOutOfLongRange
- Parameters:
bi
-BigInteger
to be checked- Returns:
true
if theBigInteger
is smaller thanLong.MIN_VALUE
or greater thanLong.MAX_VALUE
-
isOutOfLongRange
public static boolean isOutOfLongRange(float f) - Parameters:
f
-float
to be checked- Returns:
true
if thefloat
is smaller thanLong.MIN_VALUE
or greater thanLong.MAX_VALUE
-
isOutOfLongRange
public static boolean isOutOfLongRange(double d) - Parameters:
d
-double
to be checked- Returns:
true
if thedouble
is smaller thanLong.MIN_VALUE
or greater thanLong.MAX_VALUE
-
isOutOfLongRange
- Parameters:
bd
-BigDecimal
to be checked- Returns:
true
if theBigDecimal
is smaller thanLong.MIN_VALUE
or greater thanLong.MAX_VALUE
-
isOutOfFloatRange
- Parameters:
bi
-BigInteger
to be checked- Returns:
true
if theBigInteger
is smaller than-Float.MAX_VALUE
or greater thanFloat.MAX_VALUE
-
isOutOfFloatRange
public static boolean isOutOfFloatRange(double d) - Parameters:
d
-double
to be checked- Returns:
true
if thedouble
is smaller than-Float.MAX_VALUE
or greater thanFloat.MAX_VALUE
-
isOutOfFloatRange
- Parameters:
bd
-BigDecimal
to be checked- Returns:
true
if theBigDecimal
is smaller than-Float.MAX_VALUE
or greater thanFloat.MAX_VALUE
-
isOutOfDoubleRange
- Parameters:
bi
-BigInteger
to be checked- Returns:
true
if theBigInteger
is smaller than-Double.MAX_VALUE
or greater thanDouble.MAX_VALUE
-
isOutOfDoubleRange
- Parameters:
bd
-BigDecimal
to be checked- Returns:
true
if theBigDecimal
is smaller than-Double.MAX_VALUE
or greater thanDouble.MAX_VALUE
-