the loop name for 'for' clause in java

Recently I just know such a useful syntax usage of java.

aLoopName: for (;;) {    // ...  while (someCondition)    // ...    if (otherCondition)        continue aLoopName;