Class MathContext
java.lang.Object
me.datafox.dfxengine.values.api.operation.MathContext
- Direct Known Subclasses:
MapMathContext
Context used when applying
Operations
on Values
and ValueMaps
.
convertResultTo()
determines the NumeralType
that the resulting Numeral
should be converted
to after the operation. A null
value represents no conversion. It is set to null
by default. If
ignoreBadConversion()
is true
and the conversion could not be done due to the resulting Numeral
being too large for that type, no conversion is done. Otherwise, an ExtendedArithmeticException
is thrown.
It is set to true
by default. If convertToDecimal()
is true
, the input and parameter
Numerals are converted to the smallest possible decimal type before the operation. It is set to false
by
default.-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
MathContext
public MathContext()
-
-
Method Details
-
convertResultTo
- Returns:
NumeralType
that the resultingNumeral
from this operation should be converted to, ornull
if no conversion should be done
-
ignoreBadConversion
public boolean ignoreBadConversion()- Returns:
true
if the conversion determined byconvertResultTo()
should be ignored when the resultingNumeral
from this operation if the conversion cannot be done, orfalse
if anExtendedArithmeticException
should be thrown instead.
-
convertToDecimal
public boolean convertToDecimal()- Returns:
true
if the input and parameterNumerals
should be converted to a decimal type before the operation, orfalse
otherwise.
-
defaults
- Returns:
- MathContext with default values
-