String.valueOf(boolean b) has the following syntax.
public static String valueOf(boolean b)
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)); } }
The code above generates the following result.