Business Components

Uses of Class
oracle.jbo.domain.Number

Uses of Number in oracle.jbo.domain
 

Methods in oracle.jbo.domain that return Number
TypeName
 Number Date.diffInMonths(Date date)
          Calculates the difference between two dates in months.
 Number DBSequence.getSequenceNumber()
           
 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.
 

Methods in oracle.jbo.domain with parameters of type Number
TypeName
 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
TypeName
DBSequence(Number num)
           
Number(Number value)
          Creates a Number identical to an existing Number.
 


Business Components