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