Uses of Class
com.rubecula.jquantity.WholeNumber

Packages that use WholeNumber
com.rubecula.jquantity

JQuantity Contents: Copyright Notice Overview JQuantity Philosophy Programming Conventions Package Structure
Class Structure Links Important Note about the links to classes in this document:  This document appears in two different places: the source tree and the doc tree (where it is placed by the javadoc program). 

 

Uses of WholeNumber in com.rubecula.jquantity
 

Subclasses of WholeNumber in com.rubecula.jquantity
(package private)  class FuzzInt
           This class extends a WholeNumber by adding fuzzy parameters.
 

Fields in com.rubecula.jquantity declared as WholeNumber
static WholeNumber WholeNumber.$1
          $1 is the WholeNumber representation of the exact value 1.
static WholeNumber WholeNumber.$10
          $10 is the WholeNumber representation of the exact value 10.
 

Methods in com.rubecula.jquantity that return WholeNumber
static WholeNumber WholeNumber.valueOf(BaseNumber number)
          Factory method to create a WholeNumber from an instance of BaseNumber, which is also Integral.
static WholeNumber WholeNumber.valueOf(Integral number)
          Factory method to create a WholeNumber from an instance of Integral, such as a Manifest, which is not a BaseNumber.
static WholeNumber WholeNumber.valueOf(java.lang.String string, int radix)
          Factory method to create a WholeNumber from a string, and being interpreted in base radix.
static WholeNumber WholeNumber.TenToPower(int index)
          Factory method to create a WholeNumber equal to ten to the power of index.
(package private) static WholeNumber WholeNumber.valueOfExponent(int exponent, int radix)
          Factory method to create a WholeNumber which is equal to radix^exponent.
(package private) static WholeNumber WholeNumber.valueOfExponent(int exponent)
          Factory method to create a Rational which is equal to 10^exponent.
(package private) static WholeNumber WholeNumber.valueOfExponent(java.lang.String exponentStr, int radix)
          Factory method to create a Rational which is equal to the multiplier represented by an exponent string.
 WholeNumber WholeNumber.quotient(Integral that)
          Method to divide a WholeNumber by an Integral number.
 WholeNumber WholeNumber.min(WholeNumber val)
          Returns the minimum of this WholeNumber and val.
 WholeNumber WholeNumber.max(WholeNumber val)
          Returns the maximum of this WholeNumber and val.
 

Methods in com.rubecula.jquantity with parameters of type WholeNumber
 int WholeNumber.compareTo(WholeNumber o)
          Compares this WholeNumber with the specified Object o.
 void WholeNumber.subtract(WholeNumber subtrahend)
          MUTATING METHOD: Replaces value with (this - val).
 WholeNumber WholeNumber.min(WholeNumber val)
          Returns the minimum of this WholeNumber and val.
 WholeNumber WholeNumber.max(WholeNumber val)
          Returns the maximum of this WholeNumber and val.
static FuzzInt FuzzInt.valueOf(WholeNumber source)
          Factory method to create a subclass instance of a superclass instance or, if the source is itself a FuzzInt, then to create a clone.
 

Constructors in com.rubecula.jquantity with parameters of type WholeNumber
FuzzInt(WholeNumber number)
          Constructor to create an exact FuzzInt from a BigInteger.