Package | Description |
---|---|
java.lang |
Provides classes that are fundamental to the design of the Java
programming language.
|
Modifier and Type | Field and Description |
---|---|
static Class<Float> |
Float.TYPE
The
Class instance representing the primitive type
float . |
Modifier and Type | Method and Description |
---|---|
static Float |
Float.valueOf(float f)
Returns a
Float instance representing the specified
float value. |
static Float |
Float.valueOf(String s)
Returns a
Float object holding the
float value represented by the argument string
s . |
Modifier and Type | Method and Description |
---|---|
int |
Float.compareTo(Float anotherFloat)
Compares two
Float objects numerically. |