bagaimana mendapatkan indeks kejadian kedua java

String str = "itiswhatitis";
//returns the index of the first i in "is"
str.indexOf("is");
//returns the index of the second occurence of  i in "is" after the first 
str.indexOf("is", str.indexOf("is") + 1);
Repulsive Raccoon