| Changed Methods |
byte byteValue()
|
Documentation changed from old to new. |
Returns the value of this Double as a byte (by casting to a byte). |
long doubleToLongBits(double)
|
Documentation changed from old to new. |
Returns a representation of the specified floating-point value according to the IEEE 754 floating-point "double format" bit layout. |
long doubleToRawLongBits(double)
|
Documentation changed from old to new. |
Returns a representation of the specified floating-point value according to the IEEE 754 floating-point "double format" bit layout preserving Not-a-Number (NaN) values. |
double doubleValue()
|
Documentation changed from old to new. |
Returns the double value of this Double object. |
boolean equals(Object)
|
Documentation changed from old to new. |
Compares this object against the specified object. |
float floatValue()
|
Documentation changed from old to new. |
Returns the float value of this Double object. |
int hashCode()
|
Documentation changed from old to new. |
Returns a hash code for this Double object. |
int intValue()
|
Documentation changed from old to new. |
Returns the value of this Double as an int (by casting to type int). |
double longBitsToDouble(long)
|
Documentation changed from old to new. |
Returns the double value corresponding to a given bit representation. |
long longValue()
|
Documentation changed from old to new. |
Returns the value of this Double as a long (by casting to type long). |
double parseDouble(String)
|
Documentation changed from old to new. |
Returns a new double initialized to the value represented by the specified String as performed by the valueOf method of class Double. |
short shortValue()
|
Documentation changed from old to new. |
Returns the value of this Double as a short (by casting to a short). |
Double valueOf(String)
|
Documentation changed from old to new. |
Returns a Double object holding the double value represented by the argument string s. |
int compareTo(Double)
|
Documentation changed from old to new. |
Compares two Double objects numerically. |
int compareTo(Object)
|
Documentation changed from old to new. |
Compares this Double object to another object. |
boolean isInfinite(double)
|
Documentation changed from old to new. |
Returns true if the specified number is infinitely large in magnitude false otherwise. |
boolean isInfinite()
|
Documentation changed from old to new. |
Returns true if this Double value is infinitely large in magnitude false otherwise. |
boolean isNaN(double)
|
Documentation changed from old to new. |
Returns true if the specified number is a Not-a-Number (NaN) value false otherwise. |
boolean isNaN()
|
Documentation changed from old to new. |
Returns true if this Double value is a Not-a-Number (NaN) false otherwise. |
String toString(double)
|
Documentation changed from old to new. |
Returns a string representation of the double argument. |
String toString()
|
Documentation changed from old to new. |
Returns a string representation of this Double object. |
| Changed Fields |
double MAX_VALUE |
Documentation changed from old to new. |
A constant holding the largest positive finite value of type double. |
double MIN_VALUE |
Documentation changed from old to new. |
A constant holding the smallest positive nonzero value of type double. |
double NEGATIVE_INFINITY |
Documentation changed from old to new. |
A constant holding the negative infinity of type double. |
double NaN |
Documentation changed from old to new. |
A constant holding a Not-a-Number (NaN) value of type double. |
double POSITIVE_INFINITY |
Documentation changed from old to new. |
A constant holding the positive infinity of type double. |
Class TYPE |
Documentation changed from old to new. |
The Class instance representing the primitive type double. |