Jak rozpocząć indeks tablicy od 1 w Javie

for(int i = 1; i < array.length(); i++) {
	Object o = array[i];
}
Bredo