Here you can find the source of startsWithUpperCase(String text)
public static boolean startsWithUpperCase(String text)
//package com.java2s; //License from project: Open Source License public class Main { public static boolean startsWithUpperCase(String text) { return Character.isUpperCase(text.charAt(0)); }/*from ww w. j a va2 s. com*/ }