Uses of Interface
com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration
-
-
Uses of ResolvedMethodDeclaration in com.github.javaparser.ast.body
Methods in com.github.javaparser.ast.body that return ResolvedMethodDeclaration Modifier and Type Method Description ResolvedMethodDeclaration
MethodDeclaration. resolve()
-
Uses of ResolvedMethodDeclaration in com.github.javaparser.ast.expr
Methods in com.github.javaparser.ast.expr that return ResolvedMethodDeclaration Modifier and Type Method Description ResolvedMethodDeclaration
MethodCallExpr. resolve()
Attempts to resolve the declaration corresponding to the invoked method.ResolvedMethodDeclaration
MethodReferenceExpr. resolve()
-
Uses of ResolvedMethodDeclaration in com.github.javaparser.resolution
Methods in com.github.javaparser.resolution that return ResolvedMethodDeclaration Modifier and Type Method Description ResolvedMethodDeclaration
MethodUsage. getDeclaration()
Methods in com.github.javaparser.resolution that return types with arguments of type ResolvedMethodDeclaration Modifier and Type Method Description default SymbolReference<ResolvedMethodDeclaration>
Context. solveMethod(String name, List<ResolvedType> argumentsTypes, boolean staticOnly)
We find the method declaration which is the best match for the given name and list of typeParametersValues.default SymbolReference<ResolvedMethodDeclaration>
Context. solveMethodInParentContext(String name, List<ResolvedType> argumentsTypes, boolean staticOnly)
Constructors in com.github.javaparser.resolution with parameters of type ResolvedMethodDeclaration Constructor Description MethodUsage(ResolvedMethodDeclaration declaration)
MethodUsage(ResolvedMethodDeclaration declaration, List<ResolvedType> paramTypes, ResolvedType returnType)
MethodUsage(ResolvedMethodDeclaration declaration, List<ResolvedType> paramTypes, ResolvedType returnType, List<ResolvedType> exceptionTypes)
-
Uses of ResolvedMethodDeclaration in com.github.javaparser.resolution.declarations
Methods in com.github.javaparser.resolution.declarations that return ResolvedMethodDeclaration Modifier and Type Method Description default ResolvedMethodDeclaration
ResolvedDeclaration. asMethod()
Return this as a MethodDeclaration or throw an UnsupportedOperationException // FIXME: This is never overridden.Methods in com.github.javaparser.resolution.declarations that return types with arguments of type ResolvedMethodDeclaration Modifier and Type Method Description Set<ResolvedMethodDeclaration>
ResolvedReferenceTypeDeclaration. getDeclaredMethods()
Return a list of all the methods declared in this type declaration. -
Uses of ResolvedMethodDeclaration in com.github.javaparser.resolution.logic
Methods in com.github.javaparser.resolution.logic with parameters of type ResolvedMethodDeclaration Modifier and Type Method Description static boolean
MethodResolutionLogic. isApplicable(ResolvedMethodDeclaration method, String name, List<ResolvedType> argumentsTypes, TypeSolver typeSolver)
Method parameters in com.github.javaparser.resolution.logic with type arguments of type ResolvedMethodDeclaration Modifier and Type Method Description static SymbolReference<ResolvedMethodDeclaration>
MethodResolutionLogic. findMostApplicable(List<ResolvedMethodDeclaration> methods, String name, List<ResolvedType> argumentsTypes, TypeSolver typeSolver)
static SymbolReference<ResolvedMethodDeclaration>
MethodResolutionLogic. findMostApplicable(List<ResolvedMethodDeclaration> methods, String name, List<ResolvedType> argumentsTypes, TypeSolver typeSolver, boolean wildcardTolerance)
-
Uses of ResolvedMethodDeclaration in com.github.javaparser.resolution.types
Methods in com.github.javaparser.resolution.types that return types with arguments of type ResolvedMethodDeclaration Modifier and Type Method Description List<ResolvedMethodDeclaration>
ResolvedReferenceType. getAllMethods()
Get a list of all the methods available on this type.List<ResolvedMethodDeclaration>
ResolvedReferenceType. getAllMethodsVisibleToInheritors()
-