| Modifier and Type | Field and Description |
|---|---|
static DoubleWithAppx |
DoubleWithAppx.ZERO
A readily available zero value of type DoubleWithAppx
|
| Modifier and Type | Method and Description |
|---|---|
DoubleWithAppx |
DoubleWithAppx.abs()
Returns the absolute value of the current object.
|
DoubleWithAppx |
DoubleWithAppx.add(DoubleWithAppx passedVal)
Returns the sum of the current object and the parameter.
|
DoubleWithAppx |
DoubleWithAppx.divide(DoubleWithAppx passedVal)
Returns the quotient obtained when dividing the current object by the
parameter.
|
DoubleWithAppx |
DoubleWithAppx.multiply(DoubleWithAppx passedVal)
Returns the product of the current object and the parameter.
|
static DoubleWithAppx |
DoubleWithAppx.parseDouble(java.lang.String str)
Returns a new DoubleWithAppx initialized to the value represented by the
specified String, as performed by the valueOf method of class Double.
|
DoubleWithAppx |
DoubleWithAppx.power(int exp)
Returns a DoubleWithAppx representing the current object's
value raised to the indicated power.
|
DoubleWithAppx |
DoubleWithAppx.realroot(int degree)
Returns a DoubleWithAppx representing the root of the current
object based on the parameter.
|
DoubleWithAppx |
DoubleWithAppx.subtract(DoubleWithAppx passedVal)
Returns the difference obtained by subtracting the parameter from the
current object.
|
| Modifier and Type | Method and Description |
|---|---|
DoubleWithAppx |
DoubleWithAppx.add(DoubleWithAppx passedVal)
Returns the sum of the current object and the parameter.
|
int |
DoubleWithAppx.compareTo(DoubleWithAppx passedVal)
Compares the current object to the parameter.
|
DoubleWithAppx |
DoubleWithAppx.divide(DoubleWithAppx passedVal)
Returns the quotient obtained when dividing the current object by the
parameter.
|
void |
DoubleWithAppx.divideEquals(DoubleWithAppx passedVal)
Updates the current object to be the quotient of the current object over the parameter.
|
void |
DoubleWithAppx.minusEquals(DoubleWithAppx passedVal)
Updates the current object to be the difference of the parameter from the current object.
|
DoubleWithAppx |
DoubleWithAppx.multiply(DoubleWithAppx passedVal)
Returns the product of the current object and the parameter.
|
void |
DoubleWithAppx.plusEquals(DoubleWithAppx passedVal)
Updates the current object to be the sum of the current object and the parameter.
|
DoubleWithAppx |
DoubleWithAppx.subtract(DoubleWithAppx passedVal)
Returns the difference obtained by subtracting the parameter from the
current object.
|
void |
DoubleWithAppx.timesEquals(DoubleWithAppx passedVal)
Updates the current object to be the product of the parameter and the current object.
|
| Constructor and Description |
|---|
DoubleWithAppx(DoubleWithAppx passedMyDouble)
Copy Constructor.
|