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<Double> |
Double.TYPE
The
Class instance representing the primitive type
double . |
Modifier and Type | Method and Description |
---|---|
static Double |
Double.valueOf(double d)
Returns a
Double instance representing the specified
double value. |
static Double |
Double.valueOf(String s)
Returns a
Double object holding the
double value represented by the argument string
s . |
Modifier and Type | Method and Description |
---|---|
int |
Double.compareTo(Double anotherDouble)
Compares two
Double objects numerically. |