I'm really new to Java, and was wondering if someone could help me convert the following to foreach loops into for loops?
Assuming expression is a collection of items:
for(Type x: expression){
...
for(Type y: x.expression){
.....
}
}