Android String Case Convert lowerCase(String str)

Here you can find the source of lowerCase(String str)

Description

lower Case

Declaration

public static String lowerCase(String str) 

Method Source Code

//package com.java2s;

public class Main {

    public static String lowerCase(String str) {
        if (str == null) {
            return null;
        }/*from  ww  w  . ja  v a2 s .c  om*/

        return str.toLowerCase();
    }
}

Related

  1. startsWithIgnoreCase(String str, String prefix)
  2. toLowerCase(String src)
  3. toUpperCase(String src)
  4. flipCase(final String s)
  5. matchesIgnoreCase(String str, String query, int startingAt)
  6. upperCase(String str)
  7. endsWithIgnoreCase(String source, String suffix)
  8. endsWithIgnoreCase(final String target1, final String target2)
  9. startsWithIgnoreCase(final String target1, final String target2)