Java Boolean.toString()
Syntax
Boolean.toString() has the following syntax.
public String toString()
Example
In the following code shows how to use Boolean.toString() method.
public class Main {
/*ww w .j a v a 2 s . co m*/
public static void main(String[] args) {
Boolean boolean1 = new Boolean("true");
System.out.println(boolean1.toString());
}
}
The output: