Java Boolean.valueOf(String s)
Syntax
Boolean.valueOf(String s) has the following syntax.
public static Boolean valueOf(String s)
Example
In the following code shows how to use Boolean.valueOf(String s) method.
public class Main {
/*from ww w. ja va2s.co m*/
public static void main(String[] args) {
System.out.println(Boolean.valueOf("true"));
}
}
The output: