Here you can find the source of startsWith(String self, String pattern)
public static Boolean startsWith(String self, String pattern)
//package com.java2s; // Licensed under the Apache License, Version 2.0 (the "License"); public class Main { public static Boolean startsWith(String self, String pattern, Integer index) {// ww w. j av a 2s . co m return self.startsWith(pattern, index); } public static Boolean startsWith(String self, String pattern) { return startsWith(self, pattern, 0); } }