Java String Lower Case toLowerCase(String text)

Here you can find the source of toLowerCase(String text)

Description

to Lower Case

License

Apache License

Parameter

Parameter Description
text a parameter

Declaration

public static String toLowerCase(String text) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    /**/*  ww w .  ja  v  a 2 s. co m*/
     * @param text
     * @return
     */
    public static String toLowerCase(String text) {
        if (null != text) {
            return text.toLowerCase();
        }
        return text;
    }
}

Related

  1. toLowerCase(String str)
  2. toLowerCase(String string)
  3. toLowerCase(String string)
  4. toLowerCase(String text)
  5. toLowerCase(String text)
  6. toLowerCase(String value)
  7. toLowerCase(String value)
  8. toLowerCase(String[] strArr)
  9. toLowerCase(StringBuffer buf)