Here you can find the source of toUpperCase(String text)
public static String toUpperCase(String text)
//package com.java2s; //License from project: Apache License public class Main { public static String toUpperCase(String text) { if (text == null) { return null; } else {/*from w w w .j a v a 2s. c om*/ return text.toUpperCase(); } } }