Here you can find the source of floatToIntBits(float value)
public static int floatToIntBits(float value)
//package com.java2s; //License from project: Open Source License public class Main { public static int floatToIntBits(float value) { return Float.floatToIntBits(value); }//from ww w . jav a 2 s. co m }