Here you can find the source of toLowerCase(String str)
public static String toLowerCase(String str)
//package com.java2s; public class Main { public static String toLowerCase(String str) { if (str == null) { return null; }/*w w w. j a v a2 s . c o m*/ return str.toLowerCase(); } }