Interface YieldTree

All Superinterfaces:
StatementTree, Tree

public interface YieldTree extends StatementTree
A tree node for a yield statement. For example:
  yield expression ;
See Java Language Specification:
14.21 The yield Statement
Since:
14
  • Nested Class Summary

    Nested classes/interfaces declared in interface Tree

    Tree.Kind
    Modifier and Type
    Interface
    Description
    static enum 
    Enumerates all kinds of trees.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the expression for this yield statement.

    Methods declared in interface Tree

    accept, getKind
    Modifier and Type
    Method
    Description
    <R,D> R
    accept(TreeVisitor<R,D> visitor, D data)
    Accept method used to implement the visitor pattern.
    Returns the kind of this tree.
  • Method Details

    • getValue

      ExpressionTree getValue()
      Returns the expression for this yield statement.
      Returns:
      the expression