Interface WhileStatement
-
- All Known Implementing Classes:
WhileStatementImpl
public interface WhileStatement extends Statement
while
See https://docs.python.org/3/reference/compound_stmts.html#whilecondition():body()elseClause()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatementListbody()Tokencolon()Expressioncondition()ElseClauseelseClause()TokenwhileKeyword()
-
-
-
Method Detail
-
whileKeyword
Token whileKeyword()
-
condition
Expression condition()
-
colon
Token colon()
-
body
StatementList body()
-
elseClause
@CheckForNull ElseClause elseClause()
-
-