Class java.lang.Double (1.0)
public final class Double extends Number {
// Public Constructors
public Double(double value);
public Double(String s) throws NumberFormatException;
// Constants
public final static double MAX_VALUE;
public final static double MIN_VALUE;
public final static double NEGATIVE_INFINITY;
public final static double NaN;
public final static double POSITIVE_INFINITY;
public final static Class TYPE;
// Class Methods
public static long doubleToLongBits(double value);
public static boolean isInfinite(double v);
public static boolean isNaN(double v);
public static double longBitsToDouble(long bits);
public static String toString(double d);
public static Double valueOf(String s) throws NumberFormatException;
// Public Instance Methods
public byte byteValue( ); // Overrides Number.byteValue( )
public double doubleValue( ); // Defines Number.doubleValue( )
public boolean equals(Object obj); // Overrides Object.equals( )
public float floatValue( ); // Defines Number.floatValue( )
public int hashCode( ); // Overrides Object.hashCode( )
public int intValue( ); // Defines Number.intValue( )
public boolean isInfinite( );
public boolean isNaN( );
public long longValue( ); // Defines Number.longValue( )
public short shortValue( ); // Overrides Number.shortValue( )
public String toString( ); // Overrides Object.toString( )
}