Interface ExpressionStatementTree

All Superinterfaces:
StatementTree, Tree

public interface ExpressionStatementTree extends StatementTree
A tree node for an expression statement. For example:
   expression ;
 
See Java Language Specification:
14.8 Expression Statements
Since:
1.6
  • Nested Class Summary Link icon

    Nested classes/interfaces declared in interface Tree Link icon

    Tree.Kind
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    Returns the expression constituting this statement.

    Methods declared in interface Tree Link icon

    accept, getKind
  • Method Details Link icon

    • getExpression Link icon

      ExpressionTree getExpression()
      Returns the expression constituting this statement.
      Returns:
      the expression