There are many ways to do this. In this examples I assume your list holds Integers.
You can use ListIterator
ListIterator it = list.listIterator(100);
while (it.hasNext()) {
System.out.println(it.next());
}
or with for
(to keep iterator scoped inside loop)
for (ListIterator lit = list.listIterator(100); lit.hasNext();) {
System.out.println(lit.next());
}
or normal for loop but start from i=100
for (int i=100; i
or just create subList and iterate over it like you normally do
for (Integer i : list.subList(100, list.size())){
System.out.println(i);
}