Method Summary |
|
public Float64 | abs() Returns the absolute value of this number. |
public int | compareTo(double value) Compares this number with the specified value for order.
Parameters: value - the value to be compared with. |
public int | compareTo(Float64 that) |
public Float64 | copy() |
public Float64 | divide(Float64 that) Returns this number divided by the one specified.
Parameters: that - the number divisor. |
public Float64 | divide(double value) Returns this number divided by the specified value.
Parameters: value - the value divisor. |
public double | doubleValue() |
public boolean | equals(Object that) Compares this number against the specified object.
Parameters: that - the object to compare with. |
public boolean | equals(double value) Indicates if this number is equal to the specified value.
Parameters: value - the value to compare with. |
public Float64 | exp() Returns the exponential number e raised to the power of this
number. |
public int | hashCode() Returns the hash code for this number. |
public Float64 | inverse() Returns the reciprocal of this number. |
public boolean | isInfinite() Indicates if this number is infinite. |
public boolean | isLargerThan(Float64 that) Compares the absolute value of this number with that number.
Parameters: that - the number to compare with. |
public boolean | isNaN() Indicates if this number is not a number. |
public Float64 | log() Returns the natural logarithm (base e) of this number. |
public long | longValue() |
public Float64 | minus(Float64 that) Returns the difference between this number and the one specified.
Parameters: that - the number to be subtracted. |
public Float64 | minus(double value) Returns the difference between this number and the specified value.
Parameters: value - the value to be subtracted. |
public Float64 | opposite() Returns the opposite of this number. |
public Float64 | plus(Float64 that) Returns the sum of this number with the one specified.
Parameters: that - the number to be added. |
public Float64 | plus(double value) Returns the sum of this number with the specified value.
Parameters: value - the value to be added. |
public Float64 | pow(Float64 that) Returns this number raised to the power of the specified exponent.
Parameters: that - the exponent. |
public Float64 | pow(double e) Returns this number raised to the specified power.
Parameters: e - the exponent. |
public long | round() Returns the closest integer value to this 64 bits floating point number. |
public Float64 | sqrt() Returns the positive square root of this number. |
public Float64 | times(Float64 that) Returns the product of this number with the one specified.
Parameters: that - the number multiplier. |
public Float64 | times(double value) Returns the product of this number with the specified value.
Parameters: value - the value multiplier. |
public Text | toText() Returns the decimal text representation of this number. |
public static Float64 | valueOf(double doubleValue) Returns the 64 bits float from the specified double value.
Parameters: doubleValue - the double value for this number. |
public static Float64 | valueOf(CharSequence chars) Returns the number for the specified character sequence.
Parameters: chars - the character sequence. |