Uses of Class
com.ibm.eou.decimal.DecimalConstants.RoundingMode

Uses of DecimalConstants.RoundingMode in com.ibm.eou.decimal
 

Fields in com.ibm.eou.decimal declared as DecimalConstants.RoundingMode
static DecimalConstants.RoundingMode DecimalConstants.ROUNDING_FLOOR
          Constant specifying a rounding mode in which non-integer finite numbers are rounded to the nearest integer in the negative direction.
static DecimalConstants.RoundingMode DecimalConstants.ROUNDING_CEILING
          Constant specifying a rounding mode in which non-integer finite numbers are rounded to the nearest integer in the positive direction.
static DecimalConstants.RoundingMode DecimalConstants.ROUNDING_DOWN
          Constant specifying a rounding mode in which non-integer finite numbers are rounded to the nearest integer in the direction towards zero.
static DecimalConstants.RoundingMode DecimalConstants.ROUNDING_UP
          Constant specifying a rounding mode in which non-integer finite numbers are rounded to the nearest integer in the direction away from zero.
static DecimalConstants.RoundingMode DecimalConstants.ROUNDING_HALF_DOWN
          Constant specifying a rounding mode in which non-integer finite numbers are rounded to the nearest integer in either direction, and exact halves are rounded to the nearest integer in the direction towards zero.
static DecimalConstants.RoundingMode DecimalConstants.ROUNDING_HALF_UP
          Constant specifying a rounding mode in which non-integer finite numbers are rounded to the nearest integer in either direction, and exact halves are rounded to the nearest integer in the direction away from zero.
static DecimalConstants.RoundingMode DecimalConstants.ROUNDING_HALF_EVEN
          Constant specifying a rounding mode in which non-integer finite numbers are rounded to the nearest integer in either direction, and exact halves are rounded in whichever direction will make the previous digit even.
 

Methods in com.ibm.eou.decimal with parameters of type DecimalConstants.RoundingMode
static BitString DecimalEncoder.encodeDecimal(DecimalConstants.DecimalEncoding encoding, ModelNumber number, DecimalConstants.RoundingMode rounding, ArithmeticConditions flags)
          Return a bit field containing a decimalNNN encoding of a generic floating-point number.
static BitString DecimalEncoder.encodeDecimal(DecimalConstants.DecimalEncoding encoding, int sign, int[] coefficient, int exponent, DecimalConstants.RoundingMode rounding, ArithmeticConditions flags)
          Return a bit field containing a decimalNNN encoding of a finite numeric value.