Java String Lower Case toLowerCase(final String s)

Here you can find the source of toLowerCase(final String s)

Description

GWT 1.5.3 does not support Locale in String toLowerCase.

License

Apache License

Declaration

public static String toLowerCase(final String s) 

Method Source Code

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

public class Main {
    /**/*  w  ww.j  a v a 2  s  . com*/
     * GWT 1.5.3 does not support Locale in String toLowerCase. This method is used
     * so all calls to toLowerCase can be replaced with properly localized version.
     */
    public static String toLowerCase(final String s) {
        return s.toLowerCase();
    }
}

Related

  1. toLowerCase(Enum aEnum)
  2. toLowerCase(final byte b)
  3. toLowerCase(final String s)
  4. toLowerCase(final String s)
  5. toLowerCase(final String s)
  6. toLowerCase(final String str)
  7. toLowerCase(final String[] strings)