Module jdk.compiler

Interface ReturnTree

All Superinterfaces:
StatementTree, Tree

public interface ReturnTree
extends StatementTree
A tree node for a return statement. For example:
   return;
   return expression;
 
See Java Language Specification:
14.17 The return Statement
Since:
1.6
  • Nested Class Summary

    Nested classes/interfaces declared in interface com.sun.source.tree.Tree

    Tree.Kind
  • Method Summary

    Modifier and Type Method Description
    ExpressionTree getExpression()
    Returns the expression to be returned.

    Methods declared in interface com.sun.source.tree.Tree

    accept, getKind