[Java] Class ReturnStatement
- org.codehaus.groovy.ast.stmt.ReturnStatement
public class ReturnStatement extends Statement
A return statement
Field Summary
Modifiers | Name | Description |
---|---|---|
static ReturnStatement | RETURN_NULL_OR_VOID | Only used for synthetic return statements emitted by the compiler. |
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 |
---|
ReturnStatement
(ExpressionStatement statement) |
ReturnStatement
(Expression expression) |
Methods Summary
Type Params | Return Type | Name and description |
---|---|---|
public Expression |
getExpression() | |
public String |
getText() | |
public boolean |
isReturningNullOrVoid() | |
public void |
setExpression(Expression expression) | |
public String |
toString() | |
public void |
visit(GroovyCodeVisitor visitor) |
Inherited Methods Summary
Field Detail
public static final ReturnStatement RETURN_NULL_OR_VOID
Only used for synthetic return statements emitted by the compiler. For comparisons use isReturningNullOrVoid() instead.
Constructor Detail
public ReturnStatement(ExpressionStatement statement)
public ReturnStatement(Expression expression)
Method Detail
public Expression getExpression()
@Override public String getText()
public boolean isReturningNullOrVoid()
public void setExpression(Expression expression)
@Override public String toString()
@Override 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/ReturnStatement.html