Business Components

Uses of Class
oracle.jbo.domain.Number

Packages that use Number
oracle.jbo.domain The oracle.jbo.domain.* classes, also known as the "JBO Oracle Domains", provide lightweight wrappers for the Java representation of the Oracle data types (that is, the oracle.sql.* classes). 
 

Uses of Number in oracle.jbo.domain
 

Methods in oracle.jbo.domain that return Number
 Number Number.add(Number n)
          Adds another number to this.
 Number Number.add(double n)
          Adds another number to this.
 Number Number.add(int n)
          Adds another number to this.
 Number Number.subtract(Number n)
          Subtracts another number from this.
 Number Number.subtract(double n)
          Subtracts another number from this.
 Number Number.subtract(int n)
          Subtracts another number from this.
 Number Number.multiply(Number n)
          Multiplies this by another number.
 Number Number.multiply(double n)
          Multiplies this by another number.
 Number Number.multiply(int n)
          Multiplies this by another number.
 Number Number.divide(Number n)
          Divides this by another number.
 Number Number.divide(double n)
          Divides this by another number.
 Number Number.divide(int n)
          Divides this by another number.
 Number Number.atan2(Number x)
          Calculates atan(this, x).
 Number Number.log(Number base)
          Calculates the log of this to the specified base.
 Number Number.log(double base)
          Calculates the log of this to the specified base.
 Number Number.log(int base)
          Calculates the log of this to the specified base.
 Number Number.mod(Number n)
          Calculates the remainder of this/n.
 Number Number.mod(double n)
          Calculates the remainder of this/n.
 Number Number.mod(int n)
          Calculates the remainder of this/n.
 Number Number.pow(Number exp)
          Raises this to the power of exp.
 Number Date.diffInMonths(Date date)
          Calculates the difference between two dates in months.
 

Methods in oracle.jbo.domain with parameters of type Number
 Number Number.add(Number n)
          Adds another number to this.
 Number Number.subtract(Number n)
          Subtracts another number from this.
 Number Number.multiply(Number n)
          Multiplies this by another number.
 Number Number.divide(Number n)
          Divides this by another number.
 Number Number.atan2(Number x)
          Calculates atan(this, x).
 Number Number.log(Number base)
          Calculates the log of this to the specified base.
 Number Number.mod(Number n)
          Calculates the remainder of this/n.
 Number Number.pow(Number exp)
          Raises this to the power of exp.
 

Constructors in oracle.jbo.domain with parameters of type Number
Number.Number(Number value)
          Creates a Number identical to an existing Number.
 


Business Components