Uses of Class
com.ibm.eou.decimal.ModelNumber

Uses of ModelNumber in com.ibm.eou.decimal
 

Fields in com.ibm.eou.decimal declared as ModelNumber
static ModelNumber ModelNumber.NAN
          A ModelNumber representing a (quiet) NaN.
static ModelNumber ModelNumber.SIGNALING_NAN
          A ModelNumber representing a signaling NaN.
static ModelNumber ModelNumber.POSITIVE_INFINITY
          A ModelNumber representing a positive infinity.
static ModelNumber ModelNumber.NEGATIVE_INFINITY
          A ModelNumber representing a negative infinity.
 

Methods in com.ibm.eou.decimal that return ModelNumber
static ModelNumber ModelNumber.createFinite(int sign, int radix, int[] coefficient, int exponent)
          Return a ModelNumber representing a finite number.
static ModelNumber ModelNumber.createFinite(int sign, int radix, java.lang.String coefficient, int exponent)
          Return a ModelNumber representing a finite number.
static ModelNumber DecimalEncoder.toModelNumber(java.lang.String value)
          Return a ModelNumber corresponding to the decimal string representation supplied.
static ModelNumber DecimalDecoder.decodeDecimal(BitString bits)
          Return a floating-point number obtained by parsing binary encodings of decimal floating-point numbers in the decimal32, decimal64 and decimal128 formats.
 

Methods in com.ibm.eou.decimal with parameters of type ModelNumber
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 java.lang.String DecimalDecoder.toDecimalScientificString(ModelNumber value)
          Return a string representation of the specified value in decimal 'Scientific' format.
static java.lang.String DecimalDecoder.toDecimalEngineeringString(ModelNumber value)
          Return a string representation of the specified value in decimal 'Engineering' format.