[Java] Class WhileStatement

  • org.codehaus.groovy.ast.stmt.WhileStatement
All Implemented Interfaces and Traits:
LoopingStatement
public class WhileStatement
extends Statement

Represents a while (condition) { ... } loop in Groovy

Authors:
James Strachan

Constructor Summary

Constructors
Constructor and description
WhileStatement (BooleanExpression booleanExpression, Statement loopBlock)

Methods Summary

Methods
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

Inherited Methods
Methods inherited from class Name
class Statement addStatementLabel, getStatementLabel, getStatementLabels, isEmpty, setStatementLabel
class ASTNode copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getNodeMetaData, getNodeMetaData, getText, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition, visit
class Object wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll

Constructor Detail

public WhileStatement(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.4.21/html/gapi/org/codehaus/groovy/ast/stmt/WhileStatement.html