Flow control structure

  • Branching structure

    • if
    • switch
  • Loop structure

    • while
    • do while
    • for
    • foreach
Java provides continue and break to control loop structure.
A return can end the entire method, that is, a loop.