Как создать неопределенную петлю на Java

public void infiniteLoopUsingFor() {
    for (;;) {
        // do something
    }
}
Enchanting Elephant