Package org.sonar.plugins.java.api.tree
Interface ContinueStatementTree
-
- All Superinterfaces:
StatementTree
,Tree
- All Known Implementing Classes:
ContinueStatementTreeImpl
@Beta public interface ContinueStatementTree extends StatementTree
'continue' statement. JLS 14.16continue ; continue
label()
;- Since:
- Java 1.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SyntaxToken
continueKeyword()
IdentifierTree
label()
SyntaxToken
semicolonToken()
-
-
-
Method Detail
-
continueKeyword
SyntaxToken continueKeyword()
-
label
@Nullable IdentifierTree label()
-
semicolonToken
SyntaxToken semicolonToken()
-
-