Package java.math
Enum RoundingMode
- java.lang.Object
-
- java.lang.Enum<RoundingMode>
-
- java.math.RoundingMode
-
- All Implemented Interfaces:
Serializable,Comparable<RoundingMode>
public enum RoundingMode extends Enum<RoundingMode>
Specifies the rounding behavior for operations whose results cannot be represented exactly.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CEILINGRounding mode to round towards positive infinity.DOWNRounding mode where the values are rounded towards zero.FLOORRounding mode to round towards negative infinity.HALF_DOWNRounding mode where values are rounded towards the nearest neighbor.HALF_EVENRounding mode where values are rounded towards the nearest neighbor.HALF_UPRounding mode where values are rounded towards the nearest neighbor.UNNECESSARYRounding mode where the rounding operations throws an ArithmeticException for the case that rounding is necessary, i.e. for the case that the value cannot be represented exactly.UPRounding mode where positive values are rounded towards positive infinity and negative values towards negative infinity.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RoundingModevalueOf(int mode)Converts rounding mode constants from classBigDecimalintoRoundingModevalues.static RoundingModevalueOf(String name)Returns the enum constant of this type with the specified name.static RoundingMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UP
public static final RoundingMode UP
Rounding mode where positive values are rounded towards positive infinity and negative values towards negative infinity.
Rule:x.round().abs() >= x.abs()
-
DOWN
public static final RoundingMode DOWN
Rounding mode where the values are rounded towards zero.
Rule:x.round().abs() <= x.abs()
-
CEILING
public static final RoundingMode CEILING
-
FLOOR
public static final RoundingMode FLOOR
-
HALF_UP
public static final RoundingMode HALF_UP
Rounding mode where values are rounded towards the nearest neighbor. Ties are broken by rounding up.
-
HALF_DOWN
public static final RoundingMode HALF_DOWN
Rounding mode where values are rounded towards the nearest neighbor. Ties are broken by rounding down.
-
HALF_EVEN
public static final RoundingMode HALF_EVEN
Rounding mode where values are rounded towards the nearest neighbor. Ties are broken by rounding to the even neighbor.
-
UNNECESSARY
public static final RoundingMode UNNECESSARY
Rounding mode where the rounding operations throws an ArithmeticException for the case that rounding is necessary, i.e. for the case that the value cannot be represented exactly.
-
-
Method Detail
-
values
public static RoundingMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RoundingMode c : RoundingMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RoundingMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
valueOf
public static RoundingMode valueOf(int mode)
Converts rounding mode constants from classBigDecimalintoRoundingModevalues.- Parameters:
mode- rounding mode constant as defined in classBigDecimal- Returns:
- corresponding rounding mode object
-
-