Here you can find the source of upperCase(String str)
public static String upperCase(String str)
//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(); } }