1 <p> Creating new instances of <code>java.lang.Boolean</code> wastes
2 memory, since <code>Boolean</code> objects are immutable and there are
3 only two useful values of this type. Use the <code>Boolean.valueOf()</code>
4 method (or Java 1.5 autoboxing) to create <code>Boolean</code> objects instead.</p>