Uses of Class
java.math.RoundingMode
-
Packages that use RoundingMode Package Description java.math Provides classes for performing arbitrary-precision integer arithmetic (BigInteger
) and arbitrary-precision decimal arithmetic (BigDecimal
).java.text Provides classes and interfaces for handling text, dates, numbers, and messages in a manner independent of natural languages. -
-
Uses of RoundingMode in java.math
Methods in java.math that return RoundingMode Modifier and Type Method Description RoundingMode
MathContext. getRoundingMode()
Returns the roundingMode setting.static RoundingMode
RoundingMode. valueOf(int rm)
Returns theRoundingMode
object corresponding to a legacy integer rounding mode constant inBigDecimal
.static RoundingMode
RoundingMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static RoundingMode[]
RoundingMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in java.math with parameters of type RoundingMode Modifier and Type Method Description BigDecimal
BigDecimal. divide(BigDecimal divisor, int scale, RoundingMode roundingMode)
Returns aBigDecimal
whose value is(this / divisor)
, and whose scale is as specified.BigDecimal
BigDecimal. divide(BigDecimal divisor, RoundingMode roundingMode)
Returns aBigDecimal
whose value is(this / divisor)
, and whose scale isthis.scale()
.BigDecimal
BigDecimal. setScale(int newScale, RoundingMode roundingMode)
Returns aBigDecimal
whose scale is the specified value, and whose unscaled value is determined by multiplying or dividing thisBigDecimal
's unscaled value by the appropriate power of ten to maintain its overall value.Constructors in java.math with parameters of type RoundingMode Constructor Description MathContext(int setPrecision, RoundingMode setRoundingMode)
Constructs a newMathContext
with a specified precision and rounding mode. -
Uses of RoundingMode in java.text
Methods in java.text that return RoundingMode Modifier and Type Method Description RoundingMode
DecimalFormat. getRoundingMode()
Gets theRoundingMode
used in this DecimalFormat.RoundingMode
NumberFormat. getRoundingMode()
Gets theRoundingMode
used in this NumberFormat.Methods in java.text with parameters of type RoundingMode Modifier and Type Method Description void
DecimalFormat. setRoundingMode(RoundingMode roundingMode)
Sets theRoundingMode
used in this DecimalFormat.void
NumberFormat. setRoundingMode(RoundingMode roundingMode)
Sets theRoundingMode
used in this NumberFormat.
-