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. -
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()
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 UnsupportedOperationExceptionMethods 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.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()
-