- 
- 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 ) - Since:
- 1.6
- See The Java™ Language Specification:
- section 15.12
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends ExpressionTree>getArguments()Returns the arguments for the method invocation.ExpressionTreegetMethodSelect()Returns the expression identifying the method to be invoked.List<? extends Tree>getTypeArguments()Returns the type arguments for this method invocation.
 
- 
- 
- 
Method Detail- 
getTypeArgumentsList<? extends Tree> getTypeArguments() Returns the type arguments for this method invocation.- Returns:
- the type arguments
 
 - 
getMethodSelectExpressionTree getMethodSelect() Returns the expression identifying the method to be invoked.- Returns:
- the method selection expression
 
 - 
getArgumentsList<? extends ExpressionTree> getArguments() Returns the arguments for the method invocation.- Returns:
- the arguments
 
 
- 
 
-