Interface MemberReferenceTree
- All Superinterfaces:
- ExpressionTree, Tree
A tree node for a member reference expression.
For example:
expression # [ identifier | new ]
- Since:
- 1.8
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic enumThere are two kinds of member references: (i) method references and (ii) constructor references
- 
Method SummaryModifier and TypeMethodDescriptiongetMode()Returns the mode of the reference.getName()Returns the name of the reference.Returns the qualifier expression for the reference.List<? extends ExpressionTree> Returns the type arguments for the reference.
- 
Method Details- 
getMode
- 
getQualifierExpressionExpressionTree getQualifierExpression()Returns the qualifier expression for the reference.- Returns:
- the qualifier expression
 
- 
getName
- 
getTypeArgumentsList<? extends ExpressionTree> getTypeArguments()Returns the type arguments for the reference.- Returns:
- the type arguments
 
 
-