Interface MethodInvocationTree

All Superinterfaces:
ExpressionTree, Tree

public interface MethodInvocationTree extends ExpressionTree
A tree node for a method invocation expression. For example:
  identifier ( arguments )

  this . typeArguments identifier ( arguments )
See Java Language Specification:
15.12 Method Invocation Expressions
Since:
1.6
  • 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
    List<? extends ExpressionTree>
    Returns the arguments for the method invocation.
    Returns the expression identifying the method to be invoked.
    List<? extends Tree>
    Returns the type arguments for this method invocation.

    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

    • getTypeArguments

      List<? extends Tree> getTypeArguments()
      Returns the type arguments for this method invocation.
      Returns:
      the type arguments
    • getMethodSelect

      ExpressionTree getMethodSelect()
      Returns the expression identifying the method to be invoked.
      Returns:
      the method selection expression
    • getArguments

      List<? extends ExpressionTree> getArguments()
      Returns the arguments for the method invocation.
      Returns:
      the arguments