- remainder(BigDecimal) - Method in class java.math.BigDecimal
-
Returns a BigDecimal
whose value is (this % divisor)
.
- remainder(BigDecimal, MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal
whose value is (this %
divisor)
, with rounding according to the context settings.
- remainder(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this % val)
.
- rightInplaceSub(FDBigInteger) - Method in class sun.misc.FDBigInteger
-
Subtracts the supplied FDBigInteger
subtrahend from this FDBigInteger
.
- round(MathContext) - Method in class java.math.BigDecimal
-
Returns a BigDecimal
rounded according to the MathContext
settings.
- ROUND_CEILING - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards positive infinity.
- ROUND_DOWN - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards zero.
- ROUND_FLOOR - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards negative infinity.
- ROUND_HALF_DOWN - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards "nearest neighbor" unless both neighbors are equidistant, in which case
round down.
- ROUND_HALF_EVEN - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards the "nearest neighbor" unless both neighbors are equidistant, in which
case, round towards the even neighbor.
- ROUND_HALF_UP - Static variable in class java.math.BigDecimal
-
Rounding mode to round towards "nearest neighbor" unless both neighbors are equidistant, in which case
round up.
- ROUND_UNNECESSARY - Static variable in class java.math.BigDecimal
-
Rounding mode to assert that the requested operation has an exact result, hence no rounding is necessary.
- ROUND_UP - Static variable in class java.math.BigDecimal
-
Rounding mode to round away from zero.
- RoundingMode - Enum in java.math
-
Specifies a rounding behavior for numerical operations capable of discarding precision.