Как начать индекс массива с 1 в Java

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