- abs() - Method in class java.math.BigDecimal
-
Returns a BigDecimal
whose value is the absolute value of this BigDecimal
, and whose scale is
this.scale()
.
- abs(MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal
whose value is the absolute value of this BigDecimal
, with rounding
according to the context settings.
- abs() - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is the absolute value of this BigInteger.
- add(BigDecimal) - Method in class java.math.BigDecimal
-
Returns a BigDecimal
whose value is (this +
augend)
, and whose scale is max(this.scale(),
augend.scale())
.
- add(BigDecimal, MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal
whose value is (this + augend)
, with rounding according to the context
settings.
- add(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this + val)
.
- addAndCmp(FDBigInteger, FDBigInteger) - Method in class sun.misc.FDBigInteger
-
Compares this FDBigInteger
with x + y
.
- and(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this & val)
.
- andNot(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this & ~val)
.