net.sourceforge.pmd.lang.java.ast.ASTContinueStatement Maven / Gradle / Ivy
/**
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.java.ast;
import java.util.function.Function;
import org.checkerframework.checker.nullness.qual.Nullable;
import net.sourceforge.pmd.lang.ast.NodeStream;
/**
* A continue statement, that jumps to the next iteration of an enclosing loop.
*
*
*
* ContinueStatement ::= "continue" <IDENTIFIER>? ";"
*
*
*/
public final class ASTContinueStatement extends AbstractStatement {
private static final Function