[Java] Class DoWhileStatement
- org.codehaus.groovy.ast.stmt.DoWhileStatement
- All Implemented Interfaces and Traits:
- LoopingStatement
public class DoWhileStatement extends Statement implements LoopingStatement
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 |
Constructor Summary
Constructor and description |
---|
DoWhileStatement
(BooleanExpression booleanExpression, Statement loopBlock) |
Methods Summary
Type Params | Return Type | Name and description |
---|---|---|
public BooleanExpression |
getBooleanExpression() | |
public Statement |
getLoopBlock() | |
public void |
setBooleanExpression(BooleanExpression booleanExpression) | |
public void |
setLoopBlock(Statement loopBlock) | |
public void |
visit(GroovyCodeVisitor visitor) |
Inherited Methods Summary
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/3.0.7/html/gapi/org/codehaus/groovy/ast/stmt/DoWhileStatement.html