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 / FloatConsts.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  698 b   |  22 lines

  1. package sun.misc;
  2.  
  3. public class FloatConsts {
  4.    public static final float POSITIVE_INFINITY = Float.POSITIVE_INFINITY;
  5.    public static final float NEGATIVE_INFINITY = Float.NEGATIVE_INFINITY;
  6.    public static final float NaN = Float.NaN;
  7.    public static final float MAX_VALUE = Float.MAX_VALUE;
  8.    public static final float MIN_VALUE = Float.MIN_VALUE;
  9.    public static final float MIN_NORMAL = Float.MIN_NORMAL;
  10.    public static final int SIGNIFICAND_WIDTH = 24;
  11.    public static final int MAX_EXPONENT = 127;
  12.    public static final int MIN_EXPONENT = -126;
  13.    public static final int MIN_SUB_EXPONENT = -149;
  14.    public static final int EXP_BIAS = 127;
  15.    public static final int SIGN_BIT_MASK = Integer.MIN_VALUE;
  16.    public static final int EXP_BIT_MASK = 2139095040;
  17.    public static final int SIGNIF_BIT_MASK = 8388607;
  18.  
  19.    private FloatConsts() {
  20.    }
  21. }
  22.