Here you can find the source of boolToString(boolean x)
public static String boolToString(boolean x)
//package com.java2s; //License from project: Apache License public class Main { public static String boolToString(boolean x) { if (x)/*from w w w . ja v a 2 s . c o m*/ return "true"; else return "false"; } }