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.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable