Package me.datafox.dfxengine.math.utils
Class Numerals
java.lang.Object
me.datafox.dfxengine.math.utils.Numerals
Various operations for
Numerals
.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic int
static NumeralType
getSignificantType
(NumeralType... types) Returns the most significantNumeralType
.static NumeralType
getSignificantType
(NumeralType type1, NumeralType type2) static boolean
static boolean
static boolean
static DoubleNumeral
of
(double d) static FloatNumeral
of
(float f) static IntNumeral
of
(int i) static LongNumeral
of
(long l) static Numeral
If theNumber
is not an instance ofInteger
,Long
,BigInteger
,Float
,Double
orBigDecimal
, this method attempts to parse the number usingObject.toString()
.static Numeral
If the specifiedString
represents an integer, aBigIntNumeral
is returned.static BigDecNumeral
of
(BigDecimal bd) static BigIntNumeral
of
(BigInteger bi)
-
Constructor Details
-
Numerals
public Numerals()
-
-
Method Details
-
of
- Parameters:
i
-int
value- Returns:
IntNumeral
representing specified value
-
of
- Parameters:
l
-long
value- Returns:
LongNumeral
representing specified value
-
of
- Parameters:
bi
-BigInteger
value- Returns:
BigIntNumeral
representing specified value
-
of
- Parameters:
f
-float
value- Returns:
FloatNumeral
representing specified value
-
of
- Parameters:
d
-double
value- Returns:
DoubleNumeral
representing specified value
-
of
- Parameters:
bd
-BigDecimal
value- Returns:
BigDecNumeral
representing specified value
-
of
If the specifiedString
represents an integer, aBigIntNumeral
is returned. Otherwise, aBigDecNumeral
is returned. A string is considered to represent an integer if it does not contain any of the characters.
,e
orE
.- Parameters:
str
-String
representation of a numeric value- Returns:
Numeral
representing specified value- Throws:
NumberFormatException
- if str is not a valid number representation
-
of
If theNumber
is not an instance ofInteger
,Long
,BigInteger
,Float
,Double
orBigDecimal
, this method attempts to parse the number usingObject.toString()
.- Parameters:
number
-Number
value- Returns:
Numeral
representing the specified value- Throws:
NumberFormatException
- If theNumber
is not recognised and parsing its string representation fails
-
isZero
- Parameters:
numeral
-Numeral
to be checked- Returns:
true
if the specified value represents the number zero- 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
-
isOne
- Parameters:
numeral
-Numeral
to be checked- Returns:
true
if the specified value represents the number one- 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
-
isEven
- Parameters:
numeral
-Numeral
to be checked- Returns:
true
if theNumeral
represents an even number. For decimal Numerals, the number must not have a decimal part fortrue
to be returned;- 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
-
compare
- Parameters:
numeral
- firstNumeral
to compareother
- secondNumeral
to compare- Returns:
- 0 if the
Numeral
values represent the same number, 1 if the first Numeral represents a larger value than the second Numeral, and -1 if the first Numeral represents a smaller value than the second Numeral. - Throws:
NullPointerException
- if any of theNumerals
returnnull
forNumeral.getType()
IllegalArgumentException
- if any of theNumerals
do not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
getSignificantType
- Parameters:
type1
- firstNumeralType
type2
- secondNumeralType
- Returns:
- the most significant type of specified values
- Throws:
NullPointerException
- if any of the types arenull
- See Also:
-
getSignificantType
Returns the most significant
NumeralType
. The significance of a type is determined by how large numerical values it can represent. If any of the specified types is adecimal type
, the return value of this method is also a decimal type. If any of the specified types isnull
, the return value is alsonull
.null
check takes precedence over all other checks.Therefore, if any of the specified types is
BIG_DEC
, BIG_DEC is also returned. BIG_DEC is also returned if any of the specified types isBIG_INT
and another is a decimal type. In all other cases the specified type with the highestsignificance
will be returned.- Parameters:
types
- types to be checked- Returns:
- the most significant type
- Throws:
NullPointerException
- if any of the types arenull
-