Uses of Class
java.math.MathContext
-
Packages that use MathContext Package Description java.math Provides classes for performing arbitrary-precision integer arithmetic (BigInteger
) and arbitrary-precision decimal arithmetic (BigDecimal
). -
-
Uses of MathContext in java.math
Fields in java.math declared as MathContext Modifier and Type Field Description static MathContext
MathContext. DECIMAL128
AMathContext
object with a precision setting matching the IEEE 754R Decimal128 format, 34 digits, and a rounding mode ofHALF_EVEN
, the IEEE 754R default.static MathContext
MathContext. DECIMAL32
AMathContext
object with a precision setting matching the IEEE 754R Decimal32 format, 7 digits, and a rounding mode ofHALF_EVEN
, the IEEE 754R default.static MathContext
MathContext. DECIMAL64
AMathContext
object with a precision setting matching the IEEE 754R Decimal64 format, 16 digits, and a rounding mode ofHALF_EVEN
, the IEEE 754R default.static MathContext
MathContext. UNLIMITED
AMathContext
object whose settings have the values required for unlimited precision arithmetic.Methods in java.math with parameters of type MathContext Modifier and Type Method Description BigDecimal
BigDecimal. abs(MathContext mc)
Returns aBigDecimal
whose value is the absolute value of thisBigDecimal
, with rounding according to the context settings.BigDecimal
BigDecimal. add(BigDecimal augend, MathContext mc)
Returns aBigDecimal
whose value is(this + augend)
, with rounding according to the context settings.BigDecimal
BigDecimal. divide(BigDecimal divisor, MathContext mc)
Returns aBigDecimal
whose value is(this / divisor)
, with rounding according to the context settings.BigDecimal[]
BigDecimal. divideAndRemainder(BigDecimal divisor, MathContext mc)
Returns a two-elementBigDecimal
array containing the result ofdivideToIntegralValue
followed by the result ofremainder
on the two operands calculated with rounding according to the context settings.BigDecimal
BigDecimal. divideToIntegralValue(BigDecimal divisor, MathContext mc)
Returns aBigDecimal
whose value is the integer part of(this / divisor)
.BigDecimal
BigDecimal. multiply(BigDecimal multiplicand, MathContext mc)
Returns aBigDecimal
whose value is(this × multiplicand)
, with rounding according to the context settings.BigDecimal
BigDecimal. negate(MathContext mc)
Returns aBigDecimal
whose value is(-this)
, with rounding according to the context settings.BigDecimal
BigDecimal. plus(MathContext mc)
Returns aBigDecimal
whose value is(+this)
, with rounding according to the context settings.BigDecimal
BigDecimal. pow(int n, MathContext mc)
Returns aBigDecimal
whose value is(thisn)
.BigDecimal
BigDecimal. remainder(BigDecimal divisor, MathContext mc)
Returns aBigDecimal
whose value is(this % divisor)
, with rounding according to the context settings.BigDecimal
BigDecimal. round(MathContext mc)
Returns aBigDecimal
rounded according to theMathContext
settings.BigDecimal
BigDecimal. sqrt(MathContext mc)
Returns an approximation to the square root ofthis
with rounding according to the context settings.BigDecimal
BigDecimal. subtract(BigDecimal subtrahend, MathContext mc)
Returns aBigDecimal
whose value is(this - subtrahend)
, with rounding according to the context settings.Constructors in java.math with parameters of type MathContext Constructor Description BigDecimal(char[] in, int offset, int len, MathContext mc)
Translates a character array representation of aBigDecimal
into aBigDecimal
, accepting the same sequence of characters as theBigDecimal(String)
constructor, while allowing a sub-array to be specified and with rounding according to the context settings.BigDecimal(char[] in, MathContext mc)
Translates a character array representation of aBigDecimal
into aBigDecimal
, accepting the same sequence of characters as theBigDecimal(String)
constructor and with rounding according to the context settings.BigDecimal(double val, MathContext mc)
Translates adouble
into aBigDecimal
, with rounding according to the context settings.BigDecimal(int val, MathContext mc)
Translates anint
into aBigDecimal
, with rounding according to the context settings.BigDecimal(long val, MathContext mc)
Translates along
into aBigDecimal
, with rounding according to the context settings.BigDecimal(String val, MathContext mc)
Translates the string representation of aBigDecimal
into aBigDecimal
, accepting the same strings as theBigDecimal(String)
constructor, with rounding according to the context settings.BigDecimal(BigInteger unscaledVal, int scale, MathContext mc)
Translates aBigInteger
unscaled value and anint
scale into aBigDecimal
, with rounding according to the context settings.BigDecimal(BigInteger val, MathContext mc)
Translates aBigInteger
into aBigDecimal
rounding according to the context settings.
-