public class FloatConsts extends Object
float type.| Modifier and Type | Field and Description | 
|---|---|
| static int | EXP_BIASBias used in representing a  floatexponent. | 
| static int | EXP_BIT_MASKBit mask to isolate the exponent field of a
  float. | 
| static int | MAX_EXPONENTMaximum exponent a finite  floatnumber may have. | 
| static float | MAX_VALUE | 
| static int | MIN_EXPONENTMinimum exponent a normalized  floatnumber may
 have. | 
| static float | MIN_NORMALA constant holding the smallest positive normal value of type
  float, 2-126. | 
| static int | MIN_SUB_EXPONENTThe exponent the smallest positive  floatsubnormal
 value would have if it could be normalized. | 
| static float | MIN_VALUE | 
| static float | NaN | 
| static float | NEGATIVE_INFINITY | 
| static float | POSITIVE_INFINITY | 
| static int | SIGN_BIT_MASKBit mask to isolate the sign bit of a  float. | 
| static int | SIGNIF_BIT_MASKBit mask to isolate the significand field of a
  float. | 
| static int | SIGNIFICAND_WIDTHThe number of logical bits in the significand of a
  floatnumber, including the implicit bit. | 
public static final int EXP_BIAS
float exponent.public static final int EXP_BIT_MASK
float.public static final int MAX_EXPONENT
float number may have.
 It is equal to the value returned by
 Math.ilogb(Float.MAX_VALUE).public static final float MAX_VALUE
public static final int MIN_EXPONENT
float number may
 have.  It is equal to the value returned by
 Math.ilogb(Float.MIN_NORMAL).public static final float MIN_NORMAL
float, 2-126.  It is equal to the value
 returned by Float.intBitsToFloat(0x00800000).public static final int MIN_SUB_EXPONENT
float subnormal
 value would have if it could be normalized.  It is equal to the
 value returned by FpUtils.ilogb(Float.MIN_VALUE).public static final float MIN_VALUE
public static final float NaN
public static final float NEGATIVE_INFINITY
public static final float POSITIVE_INFINITY
public static final int SIGN_BIT_MASK
float.public static final int SIGNIF_BIT_MASK
float.public static final int SIGNIFICAND_WIDTH
float number, including the implicit bit.