- All Superinterfaces:
 ExpressionTree,Tree
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
 - 
Method Summary
Modifier and TypeMethodDescriptionList<? extends ExpressionTree> Returns the arguments for the method invocation.Returns the expression identifying the method to be invoked.Returns the type arguments for this method invocation. 
- 
Method Details
- 
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
 
 
 -