Java String.valueOf(boolean b)
Syntax
String.valueOf(boolean b) has the following syntax.
public static String valueOf(boolean b)
Example
In the following code shows how to use String.valueOf(boolean b) method.
public class Main {
public static void main(String args[]) {
boolean booleanValue = true;
System.out.printf("boolean = %s\n", String.valueOf(booleanValue));
/* w ww . j a va2 s .c o m*/
}
}
The code above generates the following result.