Here you can find the source of toBoolStr(boolean b)
public static String toBoolStr(boolean b)
//package com.java2s; //License from project: Open Source License public class Main { public static String toBoolStr(boolean b) { return String.valueOf(b); }// ww w .java2 s . c o m }