All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.lang.Double Maven / Gradle / Ivy

The newest version!
package java.lang;

public final class Double extends Number implements Comparable {
	public static final double MAX_VALUE= 1.7976931348623157E308d;
	public static final double MIN_VALUE= longBitsToDouble(0x1L);
	public static final double NaN= 0d/0d;
	public static final double NEGATIVE_INFINITY= -1d/0d;
	public static final double POSITIVE_INFINITY= 1d/0d;
    public final static Class TYPE;

    static {
        TYPE= new Object().getClass();
    }
    
    public static int compare(double d1, double d2) {
        return 0;
    }

    public static long doubleToLongBits(double value) {
        return 0;
    }

    public static long doubleToRawLongBits(double value) {
        return 0;
    }

    public static boolean isInfinite(double v) {
        return false;
    }

    public static boolean isNaN(double arg0) {
        return false;
    }

    public static double longBitsToDouble(long bits) {
        return 0;
    }

    /**
     * @throws NumberFormatException
     */
    public static double parseDouble(String s) throws NumberFormatException {
        return 0;
    }

    public static String toString(double d) {
        return null;
    }

    /**
     * @throws NumberFormatException
     */
    public static Double valueOf(String s) throws NumberFormatException {
        return null;
    }


    public Double(double value) {}
    /**
     * @throws NumberFormatException
     */
    public Double(String s) throws NumberFormatException {}

    public byte byteValue() {
        return 0;
    }

    public int compareTo(Double anotherDouble) {
        return 0;
    }

    public int compareTo(Object o) {
        return 0;
    }

    public double doubleValue() {
        return 0;
    }

    public boolean equals(Object obj) {
        return false;
    }

    public float floatValue() {
        return 0;
    }

    public int hashCode() {
        return 0;
    }

    public int intValue() {
        return 0;
    }

    public boolean isInfinite() {
        return false;
    }

    public boolean isNaN() {
        return false;
    }

    public long longValue() {
        return 0;
    }

    public short shortValue() {
        return 0;
    }

    public String toString() {
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy