Here you can find the source of convertBoolean(Object o)
static public boolean convertBoolean(Object o)
//package com.java2s; //License from project: Apache License public class Main { static public boolean convertBoolean(Object o) { if (o == null) return false; return Boolean.valueOf(o.toString()); }/* w ww.j a v a 2 s. c o m*/ }