| public static final double POSITIVE_INFINITY | 1.0 / 0.0; |
| public static final double NEGATIVE_INFINITY | -1.0 / 0.0; |
| public static final double NaN | 0.0d / 0.0; |
| public static final double MAX_VALUE | 1.79769313486231570e+308; |
| public static final double MIN_VALUE | longBitsToDouble(1L); |
| public static final Class TYPE | Class.getPrimitiveClass("double"); |
| public static String | Double::toString(double d) |
| public static Double | Double::valueOf(String s) throws NumberFormatException |
| public static double | Double::parseDouble(String s) throws NumberFormatException |
| static public boolean | Double::isNaN(double v) |
| static public boolean | Double::isInfinite(double v) |
| public | Double::Double(double value) |
| public | Double::Double(String s) throws NumberFormatException |
| public boolean | Double::isNaN() |
| public boolean | Double::isInfinite() |
| public String | Double::toString() |
| public byte | Double::byteValue() |
| public short | Double::shortValue() |
| public int | Double::intValue() |
| public long | Double::longValue() |
| public float | Double::floatValue() |
| public double | Double::doubleValue() |
| public int | Double::hashCode() |
| public boolean | Double::equals(Object obj) |
| public static native long | Double::doubleToLongBits(double value); |
| public static native long | Double::doubleToRawLongBits(double value); |
| public static native double | Double::longBitsToDouble(long bits); |
| public int | Double::compareTo(Double anotherDouble) |
| public int | Double::compareTo(Object o) |