Here you can find the source of booleanValue(String s)
@Deprecated public static boolean booleanValue(String s)
//package com.java2s; //License from project: LGPL public class Main { @Deprecated public static boolean booleanValue(String s) { boolean rv = false; if (s != null && s.equalsIgnoreCase("true")) rv = true;//from w w w . java2 s . co m return rv; } }