String.valueOf(float f) has the following syntax.
public static String valueOf(float f)
In the following code shows how to use String.valueOf(float f) method.
public class Main { public static void main(String args[]) { float floatValue = 2.5f; // f indicates that 2.5 is a float System.out.printf("float = %s\n", String.valueOf(floatValue)); } }
The code above generates the following result.