Class BigIntNumeral
java.lang.Object
me.datafox.dfxengine.math.numeral.BigIntNumeral
- All Implemented Interfaces:
Comparable<Numeral>
,Numeral
Implementation of
Numeral
backed with a BigInteger
.-
Constructor Summary
ConstructorsConstructorDescriptionBigIntNumeral
(long val) BigIntNumeral
(String val) BigIntNumeral
(BigInteger number) -
Method Summary
Modifier and TypeMethodDescriptionboolean
canConvert
(NumeralType type) int
Compares this numeral with the specified numeral for order.convert
(NumeralType type) convertIfAllowed
(NumeralType type) double
float
protected org.slf4j.Logger
getType()
int
intValue()
long
toString()
-
Constructor Details
-
BigIntNumeral
- Parameters:
number
-BigInteger
to be associated with this numeral
-
BigIntNumeral
- Parameters:
val
-String
representation of theBigInteger
to be associated with this numeral
-
BigIntNumeral
public BigIntNumeral(long val) - Parameters:
val
-long
representation of theBigInteger
to be associated with this numeral
-
-
Method Details
-
getNumber
- Returns:
- the
Number
backing this numeral
-
bigIntValue
- Specified by:
bigIntValue
in interfaceNumeral
- Returns:
- the backing
BigInteger
of this numeral
-
getLogger
protected org.slf4j.Logger getLogger()- Returns:
Logger
for this numeral
-
getType
-
canConvert
- Specified by:
canConvert
in interfaceNumeral
- Parameters:
type
- type to be checked for- Returns:
true
if this numeral can be converted to the specified type- Throws:
NullPointerException
- if the specified type isnull
IllegalArgumentException
- if the specified type is notnull
, but it is not recognised as any of the elements ofNumeralType
. This should never happen
-
convert
- Specified by:
convert
in interfaceNumeral
- Parameters:
type
- type for this numeral to be converted to- Returns:
- a numeral backed with the specified type
- Throws:
ExtendedArithmeticException
- if the value of this numeral is outside the provided type's boundsNullPointerException
- if the specified type isnull
IllegalArgumentException
- if the specified type is notnull
, but it is not recognised as any of the elements ofNumeralType
. This should never happen
-
convertIfAllowed
- Specified by:
convertIfAllowed
in interfaceNumeral
- Parameters:
type
- type for this numeral to be converted to- Returns:
- a numeral backed with the specified type, unless the value of this numeral is outside the specified type's bounds, in which case this numeral is returned
- Throws:
NullPointerException
- if the specified type isnull
IllegalArgumentException
- if the specified type is notnull
, but it is not recognised as any of the elements ofNumeralType
. This should never happen
-
toInteger
-
toDecimal
-
toSmallestType
- Specified by:
toSmallestType
in interfaceNumeral
- Returns:
- a numeral backed with the smallest type that can hold this numeral's value. This method does not convert between integer and decimal types.
-
intValue
public int intValue()- Specified by:
intValue
in interfaceNumeral
- Returns:
- the value of this numeral as an
int
- Throws:
ExtendedArithmeticException
- if the value of this numeral is smaller thanInteger.MIN_VALUE
or greater thanInteger.MAX_VALUE
-
longValue
public long longValue()- Specified by:
longValue
in interfaceNumeral
- Returns:
- the value of this numeral as a
long
- Throws:
ExtendedArithmeticException
- if the value of this numeral is smaller thanLong.MIN_VALUE
or greater thanLong.MAX_VALUE
-
floatValue
public float floatValue()- Specified by:
floatValue
in interfaceNumeral
- Returns:
- the value of this numeral as a
float
- Throws:
ExtendedArithmeticException
- if the value of this numeral is smaller than-Float.MAX_VALUE
or greater thanFloat.MAX_VALUE
-
doubleValue
public double doubleValue()- Specified by:
doubleValue
in interfaceNumeral
- Returns:
- the value of this numeral as a
double
- Throws:
ExtendedArithmeticException
- if the value of this numeral is smaller than-Double.MAX_VALUE
or greater thanDouble.MAX_VALUE
-
bigDecValue
- Specified by:
bigDecValue
in interfaceNumeral
- Returns:
- the value of this numeral as a
BigDecimal
-
toString
-
compareTo
Compares this numeral with the specified numeral for order. The numerals are compared usingNumerals.compare(Numeral, Numeral)
. Returns a negative integer, zero, or a positive integer as this numeral is less than, equal to, or greater than the specified numeral.- Specified by:
compareTo
in interfaceComparable<Numeral>
- Parameters:
other
- the numeral to be compared- Returns:
- a negative integer, zero, or a positive integer as this numeral is less than, equal to, or greater than the specified numeral
- 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 values ofNumeralType
. This should never happen
-