Uses of Interface
com.github.javaparser.resolution.declarations.ResolvedConstructorDeclaration
-
Packages that use ResolvedConstructorDeclaration Package Description com.github.javaparser.ast.body com.github.javaparser.ast.expr com.github.javaparser.ast.stmt com.github.javaparser.resolution com.github.javaparser.resolution.declarations com.github.javaparser.resolution.logic com.github.javaparser.symbolsolver.javaparsermodel Implementation of model based on JavaParser.com.github.javaparser.symbolsolver.javaparsermodel.contexts com.github.javaparser.symbolsolver.javaparsermodel.declarations com.github.javaparser.symbolsolver.javassistmodel Implementation of model based on Javassist.com.github.javaparser.symbolsolver.reflectionmodel Implementation of model based on reflection. -
-
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>
ResolvedRecordDeclaration. 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)
-
Uses of ResolvedConstructorDeclaration in com.github.javaparser.symbolsolver.javaparsermodel
Methods in com.github.javaparser.symbolsolver.javaparsermodel that return types with arguments of type ResolvedConstructorDeclaration Modifier and Type Method Description SymbolReference<ResolvedConstructorDeclaration>
JavaParserFacade. solve(ObjectCreationExpr objectCreationExpr)
SymbolReference<ResolvedConstructorDeclaration>
JavaParserFacade. solve(ObjectCreationExpr objectCreationExpr, boolean solveLambdas)
Given a constructor call find out to which constructor declaration it corresponds.SymbolReference<ResolvedConstructorDeclaration>
JavaParserFacade. solve(ExplicitConstructorInvocationStmt explicitConstructorInvocationStmt)
SymbolReference<ResolvedConstructorDeclaration>
JavaParserFacade. solve(ExplicitConstructorInvocationStmt explicitConstructorInvocationStmt, boolean solveLambdas)
-
Uses of ResolvedConstructorDeclaration in com.github.javaparser.symbolsolver.javaparsermodel.contexts
Methods in com.github.javaparser.symbolsolver.javaparsermodel.contexts that return types with arguments of type ResolvedConstructorDeclaration Modifier and Type Method Description SymbolReference<ResolvedConstructorDeclaration>
ClassOrInterfaceDeclarationContext. solveConstructor(java.util.List<ResolvedType> argumentsTypes)
SymbolReference<ResolvedConstructorDeclaration>
JavaParserTypeDeclarationAdapter. solveConstructor(java.util.List<ResolvedType> argumentsTypes)
SymbolReference<ResolvedConstructorDeclaration>
RecordDeclarationContext. solveConstructor(java.util.List<ResolvedType> argumentsTypes)
-
Uses of ResolvedConstructorDeclaration in com.github.javaparser.symbolsolver.javaparsermodel.declarations
Classes in com.github.javaparser.symbolsolver.javaparsermodel.declarations that implement ResolvedConstructorDeclaration Modifier and Type Class Description class
DefaultConstructorDeclaration<N extends ResolvedReferenceTypeDeclaration>
This represents the default constructor added by the compiler for objects not declaring one.class
JavaParserConstructorDeclaration<N extends ResolvedReferenceTypeDeclaration>
static class
JavaParserRecordDeclaration.CanonicalRecordConstructor
Methods in com.github.javaparser.symbolsolver.javaparsermodel.declarations that return types with arguments of type ResolvedConstructorDeclaration Modifier and Type Method Description (package private) static <N extends ResolvedReferenceTypeDeclaration>
java.util.List<ResolvedConstructorDeclaration>AstResolutionUtils. getConstructors(NodeWithMembers<?> wrappedNode, TypeSolver typeSolver, N container)
java.util.List<ResolvedConstructorDeclaration>
JavaParserAnnotationDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavaParserAnonymousClassDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavaParserClassDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavaParserEnumDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavaParserInterfaceDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavaParserRecordDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavaParserTypeParameter. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavaParserTypeVariableDeclaration. getConstructors()
Method parameters in com.github.javaparser.symbolsolver.javaparsermodel.declarations with type arguments of type ResolvedConstructorDeclaration Modifier and Type Method Description private boolean
JavaParserRecordDeclaration. containsCanonicalConstructor(java.util.List<ResolvedConstructorDeclaration> constructors)
-
Uses of ResolvedConstructorDeclaration in com.github.javaparser.symbolsolver.javassistmodel
Classes in com.github.javaparser.symbolsolver.javassistmodel that implement ResolvedConstructorDeclaration Modifier and Type Class Description class
JavassistConstructorDeclaration
Methods in com.github.javaparser.symbolsolver.javassistmodel that return types with arguments of type ResolvedConstructorDeclaration Modifier and Type Method Description java.util.List<ResolvedConstructorDeclaration>
JavassistAnnotationDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavassistClassDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavassistEnumDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavassistInterfaceDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavassistRecordDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
JavassistTypeDeclarationAdapter. getConstructors()
-
Uses of ResolvedConstructorDeclaration in com.github.javaparser.symbolsolver.reflectionmodel
Classes in com.github.javaparser.symbolsolver.reflectionmodel that implement ResolvedConstructorDeclaration Modifier and Type Class Description class
ReflectionConstructorDeclaration
Methods in com.github.javaparser.symbolsolver.reflectionmodel that return types with arguments of type ResolvedConstructorDeclaration Modifier and Type Method Description java.util.List<ResolvedConstructorDeclaration>
ReflectionAnnotationDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
ReflectionClassAdapter. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
ReflectionClassDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
ReflectionEnumDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
ReflectionInterfaceDeclaration. getConstructors()
java.util.List<ResolvedConstructorDeclaration>
ReflectionRecordDeclaration. getConstructors()
-