Android String Case Convert upperCase(String str)

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

Description

upper Case

Declaration

public static String upperCase(String str) 

Method Source Code

//package com.java2s;

public class Main {

    public static String upperCase(String str) {
        if (str == null) {
            return null;
        }//from ww  w  . j av  a 2  s .c o  m

        return str.toUpperCase();
    }
}

Related

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