-
- All Superinterfaces:
StatementTree
,Tree
public interface ReturnTree extends StatementTree
A tree node for areturn
statement. For example:return; return expression;
- Since:
- 1.6
- See The Java™ Language Specification:
- section 14.17
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTree
getExpression()
Returns the expression to be returned.
-
-
-
Method Detail
-
getExpression
ExpressionTree getExpression()
Returns the expression to be returned.- Returns:
- the expression
-
-