Here you can find the source of toUpperCase(String s)
public static String toUpperCase(String s)
//package com.java2s; public class Main { public static String toUpperCase(String s) { return s.toUpperCase(); }/*from w w w . j a v a 2 s.c om*/ }