You can use a counter. Though not so mature coding, still I find it the easiest way to skip the first element from a list.
int ctr=0;
for(Resource child:children) {
if(ctr>0) { //this will skip the first element, i.e. when ctr=0
//do your thing from the 2nd element onwards
}
ctr++;
}