[Java] Class DoWhileStatement
- org.codehaus.groovy.ast.stmt.DoWhileStatement
- All Implemented Interfaces and Traits:
- LoopingStatement
public class DoWhileStatement extends Statement
Represents a do { ... } while (condition) loop in Groovy
| Fields inherited from class | Fields |
|---|---|
interface Statement | CLOSE_CURRENT_RESULT, KEEP_CURRENT_RESULT, CLOSE_ALL_RESULTS, SUCCESS_NO_INFO, EXECUTE_FAILED, RETURN_GENERATED_KEYS, NO_GENERATED_KEYS |
Properties Summary
| Type | Name and description |
|---|---|
BooleanExpression |
booleanExpression |
Statement |
loopBlock |
Constructor Summary
| Constructor and description |
|---|
DoWhileStatement
(BooleanExpression booleanExpression, Statement loopBlock) |
Methods Summary
| Type Params | Return Type | Name and description |
|---|---|---|
BooleanExpression |
getBooleanExpression() | |
Statement |
getLoopBlock() | |
void |
setBooleanExpression(BooleanExpression booleanExpression) | |
void |
setLoopBlock(Statement loopBlock) | |
void |
visit(GroovyCodeVisitor visitor) |
Inherited Methods Summary
Property Detail
BooleanExpression booleanExpression
Statement loopBlock
Constructor Detail
public DoWhileStatement(BooleanExpression booleanExpression, Statement loopBlock)
Method Detail
public BooleanExpression getBooleanExpression()
public Statement getLoopBlock()
public void setBooleanExpression(BooleanExpression booleanExpression)
public void setLoopBlock(Statement loopBlock)
public void visit(GroovyCodeVisitor visitor)
© 2003-2020 The Apache Software Foundation
Licensed under the Apache license.
https://docs.groovy-lang.org/2.5.14/html/gapi/org/codehaus/groovy/ast/stmt/DoWhileStatement.html