Here you can find the source of toBoolean(String string)
public static final boolean toBoolean(String string)
//package com.java2s; public class Main { public static final boolean toBoolean(String string) { return new Boolean(string).booleanValue(); }/* ww w . j av a 2s . c o m*/ }