Constructs a new Boolean with its boolean value specified by string. If string is not null and is equal to "true" using a non-case sensitive comparison, the result will be a Boolean representing the primitive value true, otherwise it will be a Boolean represen
(String string)
| 67 | * the string representing a boolean value. |
| 68 | */ |
| 69 | public Boolean(String string) { |
| 70 | this(parseBoolean(string)); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Constructs a new {@code Boolean} with the specified primitive boolean |
nothing calls this directly
no test coverage detected