Here you can find the source of booleanToString1(boolean bool)
public static String booleanToString1(boolean bool)
//package com.java2s; //License from project: Open Source License public class Main { public static String booleanToString1(boolean bool) { String result = "false"; if (bool) { result = "true"; }//w w w .j a va2 s . c o m return result; } }