package java.lang;

public class Float
{
 public static final float POSITIVE_INFINITY = Infinityf;
 public static final float NEGATIVE_INFINITY = -Infinityf;
 public static final float NaN = NaNf;
 public static final float MAX_VALUE = 3.4028235E38f;
 public static final float MIN_VALUE = 1.4E-45f;

 public static String toString(float)
 {
  return null;
 }
 
 public static Float valueOf(String) throws NumberFormatException
 {
  return null;
 }
 
 public static float parseFloat(String) throws NumberFormatException
 {
  return 0.0f;
 }
 
 public static boolean isNaN(float)
 {
  return false;
 }
 
 public static boolean isInfinite(float)
 {
  return false;
 }
 
 public Float(float)
 {
 }
 
 public Float(double)
 {
 }
 
 public boolean isNaN()
 {
  return false;
 }
 
 public boolean isInfinite()
 {
  return false;
 }
 
 public String toString()
 {
  return null;
 }
 
 public byte byteValue()
 {
  return 0;
 }
 
 public short shortValue()
 {
  return 0;
 }
 
 public int intValue()
 {
  return 0;
 }
 
 public long longValue()
 {
  return 0;
 }
 
 public float floatValue()
 {
  return 0.0f;
 }
 
 public double doubleValue()
 {
  return 0.0;
 }
 
 public int hashCode()
 {
  return 0;
 }
 
 public boolean equals(Object)
 {
  return false;
 }
 
 public static int floatToIntBits(float)
 {
  return 0;
 }
 
 public static float intBitsToFloat(int)
 {
  return 0.0f;
 }
 
}