Uses of Interface
com.github.javaparser.resolution.declarations.ResolvedConstructorDeclaration
Packages that use ResolvedConstructorDeclaration
Package
Description
Implementation of model based on JavaParser.
Implementation of model based on Javassist.
Implementation of model based on reflection.
-
Uses of ResolvedConstructorDeclaration in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement interfaces with type arguments of type ResolvedConstructorDeclarationModifier and TypeClassDescriptionclassThe record declaration's constructorclassA constructor declaration:class X { X() { } }where X(){} is the constructor declaration.Methods in com.github.javaparser.ast.body that return ResolvedConstructorDeclaration -
Uses of ResolvedConstructorDeclaration in com.github.javaparser.ast.expr
Classes in com.github.javaparser.ast.expr that implement interfaces with type arguments of type ResolvedConstructorDeclarationMethods in com.github.javaparser.ast.expr that return ResolvedConstructorDeclarationModifier and TypeMethodDescriptionObjectCreationExpr.resolve()Attempts to resolve the declaration corresponding to the invoked constructor. -
Uses of ResolvedConstructorDeclaration in com.github.javaparser.ast.stmt
Classes in com.github.javaparser.ast.stmt that implement interfaces with type arguments of type ResolvedConstructorDeclarationModifier and TypeClassDescriptionclassA call to super or this in a constructor or initializer.Methods in com.github.javaparser.ast.stmt that return ResolvedConstructorDeclarationModifier and TypeMethodDescriptionExplicitConstructorInvocationStmt.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 ResolvedConstructorDeclarationModifier and TypeMethodDescriptionContext.solveConstructor(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 ResolvedConstructorDeclarationModifier and TypeMethodDescriptionResolvedClassDeclaration.getConstructors()List of constructors available for the class.ResolvedRecordDeclaration.getConstructors()List of constructors available for the class.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 ResolvedConstructorDeclarationModifier and TypeMethodDescriptionConstructorResolutionLogic.findMostApplicable(List<ResolvedConstructorDeclaration> constructors, List<ResolvedType> argumentsTypes, TypeSolver typeSolver) ConstructorResolutionLogic.findMostApplicable(List<ResolvedConstructorDeclaration> constructors, List<ResolvedType> argumentsTypes, TypeSolver typeSolver, boolean wildcardTolerance) Methods in com.github.javaparser.resolution.logic with parameters of type ResolvedConstructorDeclarationModifier and TypeMethodDescriptionstatic booleanConstructorResolutionLogic.isApplicable(ResolvedConstructorDeclaration constructor, List<ResolvedType> argumentsTypes, TypeSolver typeSolver) private static booleanConstructorResolutionLogic.isApplicable(ResolvedConstructorDeclaration constructor, List<ResolvedType> argumentsTypes, TypeSolver typeSolver, boolean withWildcardTolerance) Method parameters in com.github.javaparser.resolution.logic with type arguments of type ResolvedConstructorDeclarationModifier and TypeMethodDescriptionConstructorResolutionLogic.findMostApplicable(List<ResolvedConstructorDeclaration> constructors, List<ResolvedType> argumentsTypes, TypeSolver typeSolver) ConstructorResolutionLogic.findMostApplicable(List<ResolvedConstructorDeclaration> constructors, 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 ResolvedConstructorDeclarationModifier and TypeMethodDescriptionJavaParserFacade.solve(ObjectCreationExpr objectCreationExpr) JavaParserFacade.solve(ObjectCreationExpr objectCreationExpr, boolean solveLambdas) Given a constructor call find out to which constructor declaration it corresponds.JavaParserFacade.solve(ExplicitConstructorInvocationStmt explicitConstructorInvocationStmt) 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 ResolvedConstructorDeclarationModifier and TypeMethodDescriptionClassOrInterfaceDeclarationContext.solveConstructor(List<ResolvedType> argumentsTypes) JavaParserTypeDeclarationAdapter.solveConstructor(List<ResolvedType> argumentsTypes) RecordDeclarationContext.solveConstructor(List<ResolvedType> argumentsTypes) -
Uses of ResolvedConstructorDeclaration in com.github.javaparser.symbolsolver.javaparsermodel.declarations
Classes in com.github.javaparser.symbolsolver.javaparsermodel.declarations that implement ResolvedConstructorDeclarationModifier and TypeClassDescriptionclassThis represents the default constructor added by the compiler for objects not declaring one.classstatic classMethods in com.github.javaparser.symbolsolver.javaparsermodel.declarations that return types with arguments of type ResolvedConstructorDeclarationModifier and TypeMethodDescription(package private) static <N extends ResolvedReferenceTypeDeclaration>
List<ResolvedConstructorDeclaration> AstResolutionUtils.getConstructors(NodeWithMembers<?> wrappedNode, TypeSolver typeSolver, N container) JavaParserAnnotationDeclaration.getConstructors()JavaParserAnonymousClassDeclaration.getConstructors()JavaParserClassDeclaration.getConstructors()JavaParserEnumDeclaration.getConstructors()JavaParserInterfaceDeclaration.getConstructors()JavaParserRecordDeclaration.getConstructors()JavaParserTypeParameter.getConstructors()JavaParserTypeVariableDeclaration.getConstructors()Method parameters in com.github.javaparser.symbolsolver.javaparsermodel.declarations with type arguments of type ResolvedConstructorDeclarationModifier and TypeMethodDescriptionprivate booleanJavaParserRecordDeclaration.containsCanonicalConstructor(List<ResolvedConstructorDeclaration> constructors) -
Uses of ResolvedConstructorDeclaration in com.github.javaparser.symbolsolver.javassistmodel
Classes in com.github.javaparser.symbolsolver.javassistmodel that implement ResolvedConstructorDeclarationMethods in com.github.javaparser.symbolsolver.javassistmodel that return types with arguments of type ResolvedConstructorDeclarationModifier and TypeMethodDescriptionJavassistAnnotationDeclaration.getConstructors()JavassistClassDeclaration.getConstructors()JavassistEnumDeclaration.getConstructors()JavassistInterfaceDeclaration.getConstructors()JavassistRecordDeclaration.getConstructors()JavassistTypeDeclarationAdapter.getConstructors() -
Uses of ResolvedConstructorDeclaration in com.github.javaparser.symbolsolver.reflectionmodel
Classes in com.github.javaparser.symbolsolver.reflectionmodel that implement ResolvedConstructorDeclarationMethods in com.github.javaparser.symbolsolver.reflectionmodel that return types with arguments of type ResolvedConstructorDeclarationModifier and TypeMethodDescriptionReflectionAnnotationDeclaration.getConstructors()ReflectionClassAdapter.getConstructors()ReflectionClassDeclaration.getConstructors()ReflectionEnumDeclaration.getConstructors()ReflectionInterfaceDeclaration.getConstructors()ReflectionRecordDeclaration.getConstructors()