PS: I understand the difference between \"true\" and true.
Edit: I also understand that Boolean.TRUE is a wrapper for the primitive true, my question then is - why d
Boolean.TRUE is a wrapper object and singleton . true is a literal constant. Below are 2 situations where I use wrappers over primitives