|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.commons.math.dfp.Dfp
org.apache.commons.math.dfp.DfpDec
public class DfpDec
Subclass of Dfp which hides the radix-10000 artifacts of the superclass.
This should give outward appearances of being a decimal number with DIGITS*4-3
decimal digits. This class can be subclassed to appear to be an arbitrary number
of decimal digits less than DIGITS*4-3.
| Field Summary |
|---|
| Fields inherited from class org.apache.commons.math.dfp.Dfp |
|---|
ERR_SCALE, FINITE, INFINITE, MAX_EXP, MIN_EXP, QNAN, RADIX, SNAN |
| Constructor Summary | |
|---|---|
DfpDec(Dfp d)
Copy constructor. |
|
| Method Summary | |
|---|---|
Dfp |
newInstance()
Create an instance with a value of 0. |
Dfp |
newInstance(byte x)
Create an instance from a byte value. |
Dfp |
newInstance(byte sign,
byte nans)
Creates an instance with a non-finite value. |
Dfp |
newInstance(Dfp d)
Create an instance by copying an existing one. |
Dfp |
newInstance(double x)
Create an instance from a double value. |
Dfp |
newInstance(int x)
Create an instance from an int value. |
Dfp |
newInstance(long x)
Create an instance from a long value. |
Dfp |
newInstance(String s)
Create an instance from a String representation. |
Dfp |
nextAfter(Dfp x)
Returns the next number greater than this one in the direction of x. |
| Methods inherited from class org.apache.commons.math.dfp.Dfp |
|---|
add, ceil, classify, copysign, divide, divide, dotrap, equals, floor, getField, getOne, getRadixDigits, getTwo, getZero, greaterThan, hashCode, intValue, isInfinite, isNaN, lessThan, log10, log10K, multiply, multiply, negate, power10, power10K, remainder, rint, sqrt, subtract, toDouble, toSplitDouble, toString, unequal |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public DfpDec(Dfp d)
d - instance to copy| Method Detail |
|---|
public Dfp newInstance()
newInstance in class Dfppublic Dfp newInstance(byte x)
newInstance in class Dfpx - value to convert to an instance
public Dfp newInstance(int x)
newInstance in class Dfpx - value to convert to an instance
public Dfp newInstance(long x)
newInstance in class Dfpx - value to convert to an instance
public Dfp newInstance(double x)
newInstance in class Dfpx - value to convert to an instance
public Dfp newInstance(Dfp d)
newInstance in class Dfpd - instance to copy
public Dfp newInstance(String s)
newInstance in class Dfps - string representation of the instance
public Dfp newInstance(byte sign,
byte nans)
newInstance in class Dfpsign - sign of the Dfp to createnans - code of the value, must be one of Dfp.INFINITE,
Dfp.SNAN, Dfp.QNAN
public Dfp nextAfter(Dfp x)
nextAfter in class Dfpx - direction where to look at
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||