Here you can find the source of toBoolean(String value)
public static boolean toBoolean(String value)
//package com.java2s; //License from project: Apache License public class Main { public static boolean toBoolean(String value) { if (value.equalsIgnoreCase("true")) { return true; }/* www. j av a 2s . co m*/ return false; } }