Here you can find the source of int2float(Integer integer)
public static Float int2float(Integer integer)
//package com.java2s; public class Main { public static Float int2float(Integer integer) { return new Float(integer); }/*from www . j av a 2 s . c om*/ }