toLowerCase() replaces all uppercase letters to lowercase.
public class Test{
public static void main(String[] arg){
String firstString = "HeLLo";
String lowerString=firstString.toLowerCase();
System.out.println("The new lower case String is : "+newString);
}
}
Converts all the letters to lowercase.