-
- All Superinterfaces:
StatementTree
,Tree
public interface ContinueTree extends StatementTree
A tree node for acontinue
statement. For example:continue; continue label ;
- Since:
- 1.6
- See The Java™ Language Specification:
- section 14.16
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Name
getLabel()
Returns the label for thiscontinue
statement.
-
-
-
Method Detail
-
getLabel
Name getLabel()
Returns the label for thiscontinue
statement.- Returns:
- the label
-
-