Is there a token in java that skips the rest of the for loop? Something like VB\'s Continue in java.
use continue keyword .
EX:
for(int i = 0; i < 10; i++){ if(i == 5){ continue; } }