Here you can find the source of toLowerCase(String pString)
Parameter | Description |
---|---|
pString | the string to convert |
public static String toLowerCase(String pString)
//package com.java2s; public class Main { /**// w ww . jav a 2 s . c o m * Converts a string to lowercase. * * @param pString the string to convert * @return the string converted to lowercase, or null if the argument was * null. */ public static String toLowerCase(String pString) { if (pString != null) { return pString.toLowerCase(); } return null; } }