String.toUpperCase() has the following syntax.
public String toUpperCase()
In the following code shows how to use String.toUpperCase() method.
public class Main { public static void main(String[] argv) { String str = "Java2s.Com"; System.out.println(str.toUpperCase()); } }
The code above generates the following result.