home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / sun / misc / DoubleConsts.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  739 b   |  22 lines

  1. package sun.misc;
  2.  
  3. public class DoubleConsts {
  4.    public static final double POSITIVE_INFINITY = Double.POSITIVE_INFINITY;
  5.    public static final double NEGATIVE_INFINITY = Double.NEGATIVE_INFINITY;
  6.    public static final double NaN = Double.NaN;
  7.    public static final double MAX_VALUE = Double.MAX_VALUE;
  8.    public static final double MIN_VALUE = Double.MIN_VALUE;
  9.    public static final double MIN_NORMAL = Double.MIN_NORMAL;
  10.    public static final int SIGNIFICAND_WIDTH = 53;
  11.    public static final int MAX_EXPONENT = 1023;
  12.    public static final int MIN_EXPONENT = -1022;
  13.    public static final int MIN_SUB_EXPONENT = -1074;
  14.    public static final int EXP_BIAS = 1023;
  15.    public static final long SIGN_BIT_MASK = Long.MIN_VALUE;
  16.    public static final long EXP_BIT_MASK = 9218868437227405312L;
  17.    public static final long SIGNIF_BIT_MASK = 4503599627370495L;
  18.  
  19.    private DoubleConsts() {
  20.    }
  21. }
  22.