Here you can find the source of convertBoolean(Boolean convertedValue, boolean defaultValue)
private static boolean convertBoolean(Boolean convertedValue, boolean defaultValue)
//package com.java2s; //License from project: Open Source License public class Main { private static boolean convertBoolean(Boolean convertedValue, boolean defaultValue) { return (convertedValue != null) ? convertedValue : defaultValue; }//from ww w. j av a2 s . co m }