Uses of Interface
com.github.javaparser.resolution.declarations.ResolvedConstructorDeclaration
-
-
Uses of ResolvedConstructorDeclaration in com.github.javaparser.ast.body
Methods in com.github.javaparser.ast.body that return ResolvedConstructorDeclaration Modifier and Type Method Description ResolvedConstructorDeclaration
CompactConstructorDeclaration. resolve()
ResolvedConstructorDeclaration
ConstructorDeclaration. resolve()
-
Uses of ResolvedConstructorDeclaration in com.github.javaparser.ast.expr
Methods in com.github.javaparser.ast.expr that return ResolvedConstructorDeclaration Modifier and Type Method Description ResolvedConstructorDeclaration
ObjectCreationExpr. resolve()
Attempts to resolve the declaration corresponding to the invoked constructor. -
Uses of ResolvedConstructorDeclaration in com.github.javaparser.ast.stmt
Methods in com.github.javaparser.ast.stmt that return ResolvedConstructorDeclaration Modifier and Type Method Description ResolvedConstructorDeclaration
ExplicitConstructorInvocationStmt. resolve()
Attempts to resolve the declaration corresponding to the invoked constructor. -
Uses of ResolvedConstructorDeclaration in com.github.javaparser.resolution
Methods in com.github.javaparser.resolution that return types with arguments of type ResolvedConstructorDeclaration Modifier and Type Method Description default SymbolReference<ResolvedConstructorDeclaration>
Context. solveConstructor(java.util.List<ResolvedType> argumentsTypes)
We find the method declaration which is the best match for the given name and list of typeParametersValues. -
Uses of ResolvedConstructorDeclaration in com.github.javaparser.resolution.declarations
Methods in com.github.javaparser.resolution.declarations that return types with arguments of type ResolvedConstructorDeclaration Modifier and Type Method Description java.util.List<ResolvedConstructorDeclaration>
ResolvedClassDeclaration. getConstructors()
List of constructors available for the class.java.util.List<ResolvedConstructorDeclaration>
ResolvedReferenceTypeDeclaration. getConstructors()
-
Uses of ResolvedConstructorDeclaration in com.github.javaparser.resolution.logic
Methods in com.github.javaparser.resolution.logic that return types with arguments of type ResolvedConstructorDeclaration Modifier and Type Method Description static SymbolReference<ResolvedConstructorDeclaration>
ConstructorResolutionLogic. findMostApplicable(java.util.List<ResolvedConstructorDeclaration> constructors, java.util.List<ResolvedType> argumentsTypes, TypeSolver typeSolver)
static SymbolReference<ResolvedConstructorDeclaration>
ConstructorResolutionLogic. findMostApplicable(java.util.List<ResolvedConstructorDeclaration> constructors, java.util.List<ResolvedType> argumentsTypes, TypeSolver typeSolver, boolean wildcardTolerance)
Methods in com.github.javaparser.resolution.logic with parameters of type ResolvedConstructorDeclaration Modifier and Type Method Description static boolean
ConstructorResolutionLogic. isApplicable(ResolvedConstructorDeclaration constructor, java.util.List<ResolvedType> argumentsTypes, TypeSolver typeSolver)
private static boolean
ConstructorResolutionLogic. isApplicable(ResolvedConstructorDeclaration constructor, java.util.List<ResolvedType> argumentsTypes, TypeSolver typeSolver, boolean withWildcardTolerance)
private static boolean
ConstructorResolutionLogic. isMoreSpecific(ResolvedConstructorDeclaration constructorA, ResolvedConstructorDeclaration constructorB, TypeSolver typeSolver)
Method parameters in com.github.javaparser.resolution.logic with type arguments of type ResolvedConstructorDeclaration Modifier and Type Method Description static SymbolReference<ResolvedConstructorDeclaration>
ConstructorResolutionLogic. findMostApplicable(java.util.List<ResolvedConstructorDeclaration> constructors, java.util.List<ResolvedType> argumentsTypes, TypeSolver typeSolver)
static SymbolReference<ResolvedConstructorDeclaration>
ConstructorResolutionLogic. findMostApplicable(java.util.List<ResolvedConstructorDeclaration> constructors, java.util.List<ResolvedType> argumentsTypes, TypeSolver typeSolver, boolean wildcardTolerance)
-