Here you can find the source of fromint(int i)
public static Boolean fromint(int i)
//package com.java2s; //License from project: Open Source License public class Main { public static Boolean fromint(int i) { if (i == 0) { return false; } else {//w w w . jav a2s. co m return true; } } }