public static String ensureFirstIsCap(String in){
        if(Character.isUpperCase(in.charAt(0))){
           return in;
        }