Allocates a {@code Boolean} object representing the value
{@code true} if the string argument is not {@code null}
and is equal, ignoring case, to the string {@code "true"}.
Otherwise, allocate a {@code Boolean} object representing the
value {@code false}. Examples:<p>
{@code new Boolean("True")} produces a {@code Boolean} object
that represents {@code true}.<br>
{@code new Boolean("yes")} produces a {@code Boolean} object
that represents {@code false}.
@param s the string to be converted to a {@code Boolean}.
Allocates a {@code Boolean} object representing the value {@code true} if the string argument is not {@code null} and is equal, ignoring case, to the string {@code "true"}. Otherwise, allocate a {@code Boolean} object representing the value {@code false}. Examples:<p> {@code new Boolean("True")} produces a {@code Boolean} object that represents {@code true}.<br> {@code new Boolean("yes")} produces a {@code Boolean} object that represents {@code false}.
@param s the string to be converted to a {@code Boolean}.