Here you can find the source of intToBoolean(Integer value)
public static boolean intToBoolean(Integer value)
//package com.java2s; public class Main { public static boolean intToBoolean(Integer value) { return Integer.valueOf(1).equals(value); }/*from w w w . ja v a 2 s. c o m*/ }