Here you can find the source of IntToFloat(long x)
public final static double IntToFloat(long x)
//package com.java2s; //License from project: Open Source License public class Main { public final static double IntToFloat(long x) { return x; }//w w w . j a va 2 s . c o m }