Boolean.this

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}.

  1. this()
  2. this(bool v)
  3. this(long v)
  4. this(ulong v)
  5. this(Boolean v)
  6. this(string s)
    class Boolean
    this
    (
    string s
    )

Meta