Package me.datafox.dfxengine.math.utils
Class Conversion
java.lang.Object
me.datafox.dfxengine.math.utils.Conversion
Various conversion methods for
Numerals
.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic BigDecimal
static BigDecNumeral
toBigDecNumeral
(Numeral numeral) static BigInteger
static BigIntNumeral
toBigIntNumeral
(Numeral numeral) static Numeral
static double
static DoubleNumeral
toDoubleNumeral
(Numeral numeral) static float
static FloatNumeral
toFloatNumeral
(Numeral numeral) static int
static Numeral
static IntNumeral
toIntNumeral
(Numeral numeral) static long
static LongNumeral
toLongNumeral
(Numeral numeral) static Numeral
toNumeral
(Numeral numeral, NumeralType type) static Numeral
toSmallestType
(Numeral numeral)
-
Constructor Details
-
Conversion
public Conversion()
-
-
Method Details
-
toInt
- Parameters:
numeral
-Numeral
to be converted- Returns:
int
representation of the specified value- Throws:
ExtendedArithmeticException
- if the value of the specifiedNumeral
is smaller thanInteger.MIN_VALUE
or greater thanInteger.MAX_VALUE
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
-
toLong
- Parameters:
numeral
-Numeral
to be converted- Returns:
long
representation of the specified value- Throws:
ExtendedArithmeticException
- if the value of the specifiedNumeral
is smaller thanLong.MIN_VALUE
or greater thanLong.MAX_VALUE
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
-
toBigInt
- Parameters:
numeral
-Numeral
to be converted- Returns:
BigInteger
representation of the specified 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
-
toFloat
- Parameters:
numeral
-Numeral
to be converted- Returns:
float
representation of the specified value- Throws:
ExtendedArithmeticException
- if the value of the specifiedNumeral
is smaller than-Float.MAX_VALUE
or greater thanFloat.MAX_VALUE
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
-
toDouble
- Parameters:
numeral
-Numeral
to be converted- Returns:
double
representation of the specified value- Throws:
ExtendedArithmeticException
- if the value of the specifiedNumeral
is smaller than-Double.MAX_VALUE
or greater thanDouble.MAX_VALUE
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
-
toBigDec
- Parameters:
numeral
-Numeral
to be converted- Returns:
BigDecimal
representation of the specified 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
-
toSmallestType
- Parameters:
numeral
-Numeral
to be converted- Returns:
- a
Numeral
backed with the smallest type that can hold the specified Numeral's value. This method does not convert between integer and decimal types. - 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
-
toInteger
- Parameters:
numeral
-Numeral
to be converted- Returns:
- a
Numeral
backed with the smallest integer type that can hold the specified Numeral's value, unless the Numeral is already an integer, in which case the specified Numeral is 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
-
toDecimal
- Parameters:
numeral
-Numeral
to be converted- Returns:
- a
Numeral
backed with the smallest decimal type that can hold the specified Numeral's value, unless the Numeral is already a decimal, in which case the specified Numeral is 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
-
toNumeral
- Parameters:
numeral
-Numeral
to be convertedtype
- type for theNumeral
to be converted to- Returns:
- a
Numeral
backed with the specified type - Throws:
ExtendedArithmeticException
- if the value of the specifiedNumeral
is outside the specified type's boundsNullPointerException
- 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
-
toIntNumeral
- Parameters:
numeral
-Numeral
to be converted- Returns:
Numeral
backed by anint
with the specified Numeral's value- Throws:
ExtendedArithmeticException
- if the value of the specifiedNumeral
is smaller thanInteger.MIN_VALUE
or greater thanInteger.MAX_VALUE
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
-
toLongNumeral
- Parameters:
numeral
-Numeral
to be converted- Returns:
Numeral
backed by along
with the specified Numeral's value- Throws:
ExtendedArithmeticException
- if the value of the specifiedNumeral
is smaller thanLong.MIN_VALUE
or greater thanLong.MAX_VALUE
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
-
toBigIntNumeral
- Parameters:
numeral
-Numeral
to be converted- Returns:
Numeral
backed by aBigInteger
with the specified Numeral's 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
-
toFloatNumeral
- Parameters:
numeral
-Numeral
to be converted- Returns:
Numeral
backed by afloat
with the specified Numeral's value- Throws:
ExtendedArithmeticException
- if the value of the specifiedNumeral
is smaller than-Float.MAX_VALUE
or greater thanFloat.MAX_VALUE
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
-
toDoubleNumeral
- Parameters:
numeral
-Numeral
to be converted- Returns:
Numeral
backed by adouble
with the specified Numeral's value- Throws:
ExtendedArithmeticException
- if the value of the specifiedNumeral
is smaller than-Double.MAX_VALUE
or greater thanDouble.MAX_VALUE
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
-
toBigDecNumeral
- Parameters:
numeral
-Numeral
to be converted- Returns:
Numeral
backed by aBigDecimal
with the specified Numeral's 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
-