Cómo iniciar el índice de matriz desde 1 en Java

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