Class ExprMirror.InvocationMirror.MethodCtDecl
- java.lang.Object
-
- net.sourceforge.pmd.lang.java.types.internal.infer.ExprMirror.InvocationMirror.MethodCtDecl
-
- All Implemented Interfaces:
OverloadSelectionResult
- Enclosing interface:
- ExprMirror.InvocationMirror
public static class ExprMirror.InvocationMirror.MethodCtDecl extends Object implements OverloadSelectionResult
Information about the overload-resolution for a specific method.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JMethodSiggetMethodType()Returns the type of the method or constructor that is called by theInvocationNode.booleanisFailed()Returns true if the invocation of this method failed.booleanisVarargsCall()Returns true if this is a varargs call.JTypeMirrorithFormalParam(int i)Returns the type of the i-th formal parameter of the method.booleanneedsUncheckedConversion()Whether the declaration needed unchecked conversion to be applicable.StringtoString()
-
-
-
Method Detail
-
getMethodType
public JMethodSig getMethodType()
Description copied from interface:OverloadSelectionResultReturns the type of the method or constructor that is called by theInvocationNode. This is a method type whose type parameters have been instantiated by their actual inferred values.For constructors the return type of this signature may be different from the type of this node. For an anonymous class constructor (in
ASTEnumConstantorASTConstructorCall), the selected constructor is the *superclass* constructor. In particular, if the anonymous class implements an interface, the constructor is the constructor of classObject. In that case though, theTypeNode.getTypeMirror()of theInvocationNodewill be the type of the anonymous class (hence the difference).- Specified by:
getMethodTypein interfaceOverloadSelectionResult
-
needsUncheckedConversion
public boolean needsUncheckedConversion()
Description copied from interface:OverloadSelectionResultWhether the declaration needed unchecked conversion to be applicable. In this case, the return type of the method is erased.- Specified by:
needsUncheckedConversionin interfaceOverloadSelectionResult
-
isVarargsCall
public boolean isVarargsCall()
Description copied from interface:OverloadSelectionResultReturns true if this is a varargs call. This means, that the called method is varargs, and was overload-selected in the varargs phase. For example:
In this case, the last formal parameter of the method type should be interpreted specially with-respect-to the argument expressions (seeArrays.asList("a", "b"); // this is a varargs call Arrays.asList(new String[] { "a", "b" }); // this is not a varargs callOverloadSelectionResult.ithFormalParam(int)).- Specified by:
isVarargsCallin interfaceOverloadSelectionResult
-
ithFormalParam
public JTypeMirror ithFormalParam(int i)
Description copied from interface:OverloadSelectionResultReturns the type of the i-th formal parameter of the method. This is relevant when the call is varargs:ican in that case be greater that the number of formal parameters.- Specified by:
ithFormalParamin interfaceOverloadSelectionResult- Parameters:
i- Index for a formal
-
isFailed
public boolean isFailed()
Description copied from interface:OverloadSelectionResultReturns true if the invocation of this method failed. This means, the presented method type is a fallback, whose type parameters might not have been fully instantiated. This may also mean several methods were ambiguous, and an arbitrary one was chosen.- Specified by:
isFailedin interfaceOverloadSelectionResult
-
-