Here you can find the source of toLowerCase(String text)
Parameter | Description |
---|---|
text | a parameter |
public static String toLowerCase(String text)
//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; } }