8.9.6.The constructors for the Boolean wrapper take either a boolean value true or false, or a String.
A Boolean object can be used in a boolean test,
the compiler will automatically "unbox" the Boolean to a boolean.
public class MainClass{ public static void main(String[] argv){
Boolean booleanObject = new Boolean("true"); if(booleanObject == true){
System.out.println("true");
}