Parses the specified string as a boolean value. @param string the string representation of a boolean value. @return Boolean.TRUE if string is equal to "true" using case insensitive comparison, Boolean.FALSE otherwise. @see #parseBoolean(String)
(String string)
| 209 | * @see #parseBoolean(String) |
| 210 | */ |
| 211 | public static Boolean valueOf(String string) { |
| 212 | return parseBoolean(string) ? Boolean.TRUE : Boolean.FALSE; |
| 213 | } |
| 214 | |
| 215 | /** |
| 216 | * Returns a {@code Boolean} instance for the specified boolean value. |
nothing calls this directly
no test coverage detected