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