Uses of Class
com.github.javaparser.ast.expr.MethodCallExpr
Packages that use MethodCallExpr
Package
Description
Implementation of model based on JavaParser.
-
Uses of MethodCallExpr in com.github.javaparser.ast.expr
Methods in com.github.javaparser.ast.expr that return MethodCallExprModifier and TypeMethodDescriptionExpression.asMethodCallExpr()
MethodCallExpr.asMethodCallExpr()
MethodCallExpr.clone()
MethodCallExpr.removeScope()
MethodCallExpr.setArguments
(NodeList<Expression> arguments) MethodCallExpr.setName
(SimpleName name) MethodCallExpr.setScope
(Expression scope) MethodCallExpr.setTypeArguments
(NodeList<Type> typeArguments) Sets the typeArgumentsMethods in com.github.javaparser.ast.expr that return types with arguments of type MethodCallExprModifier and TypeMethodDescriptionExpression.toMethodCallExpr()
MethodCallExpr.toMethodCallExpr()
Method parameters in com.github.javaparser.ast.expr with type arguments of type MethodCallExprModifier and TypeMethodDescriptionvoid
Expression.ifMethodCallExpr
(Consumer<MethodCallExpr> action) void
MethodCallExpr.ifMethodCallExpr
(Consumer<MethodCallExpr> action) -
Uses of MethodCallExpr in com.github.javaparser.ast.visitor
Methods in com.github.javaparser.ast.visitor with parameters of type MethodCallExprModifier and TypeMethodDescriptionCloneVisitor.visit
(MethodCallExpr n, Object arg) EqualsVisitor.visit
(MethodCallExpr n, Visitable arg) GenericListVisitorAdapter.visit
(MethodCallExpr n, A arg) GenericVisitor.visit
(MethodCallExpr n, A arg) GenericVisitorAdapter.visit
(MethodCallExpr n, A arg) GenericVisitorWithDefaults.visit
(MethodCallExpr n, A arg) HashCodeVisitor.visit
(MethodCallExpr n, Void arg) ModifierVisitor.visit
(MethodCallExpr n, A arg) NoCommentEqualsVisitor.visit
(MethodCallExpr n, Visitable arg) NoCommentHashCodeVisitor.visit
(MethodCallExpr n, Void arg) void
NodeFinderVisitor.visit
(MethodCallExpr n, Range arg) ObjectIdentityEqualsVisitor.visit
(MethodCallExpr n, Visitable arg) ObjectIdentityHashCodeVisitor.visit
(MethodCallExpr n, Void arg) void
VoidVisitor.visit
(MethodCallExpr n, A arg) void
VoidVisitorAdapter.visit
(MethodCallExpr n, A arg) void
VoidVisitorWithDefaults.visit
(MethodCallExpr n, A arg) -
Uses of MethodCallExpr in com.github.javaparser.printer
Methods in com.github.javaparser.printer with parameters of type MethodCallExprModifier and TypeMethodDescriptionvoid
DefaultPrettyPrinterVisitor.visit
(MethodCallExpr n, Void arg) void
PrettyPrintVisitor.visit
(MethodCallExpr n, Void arg) Deprecated. -
Uses of MethodCallExpr in com.github.javaparser.resolution
Methods in com.github.javaparser.resolution that return types with arguments of type MethodCallExprModifier and TypeMethodDescriptionstatic Optional
<MethodCallExpr> Navigator.findMethodCall
(Node node, String methodName) -
Uses of MethodCallExpr in com.github.javaparser.symbolsolver
Methods in com.github.javaparser.symbolsolver with parameters of type MethodCallExprModifier and TypeMethodDescriptionprivate String
SourceFileInfoExtractor.toString
(MethodCallExpr node) -
Uses of MethodCallExpr in com.github.javaparser.symbolsolver.javaparsermodel
Methods in com.github.javaparser.symbolsolver.javaparsermodel with parameters of type MethodCallExprModifier and TypeMethodDescriptionJavaParserFacade.solve
(MethodCallExpr methodCallExpr) JavaParserFacade.solve
(MethodCallExpr methodCallExpr, boolean solveLambdas) Given a method call find out to which method declaration it corresponds.JavaParserFacade.solveMethodAsUsage
(MethodCallExpr call) DefaultVisitorAdapter.visit
(MethodCallExpr node, Boolean aBoolean) TypeExtractor.visit
(MethodCallExpr node, Boolean solveLambdas) -
Uses of MethodCallExpr in com.github.javaparser.symbolsolver.javaparsermodel.contexts
Constructors in com.github.javaparser.symbolsolver.javaparsermodel.contexts with parameters of type MethodCallExprModifierConstructorDescriptionMethodCallExprContext
(MethodCallExpr wrappedNode, TypeSolver typeSolver) -
Uses of MethodCallExpr in com.github.javaparser.symbolsolver.resolution.typeinference
Methods in com.github.javaparser.symbolsolver.resolution.typeinference with parameters of type MethodCallExprModifier and TypeMethodDescriptionTypeInference.instantiationInference
(MethodCallExpr methodCallExpr, ResolvedMethodDeclaration methodDeclaration) boolean
TypeInference.invocationApplicabilityInference
(MethodCallExpr methodCallExpr, ResolvedMethodDeclaration methodDeclaration) Determine whether a potentially applicable generic method m is applicable for a method invocation that provides no explicit type arguments.boolean
TypeInference.moreSpecificMethodInference
(MethodCallExpr methodCall, ResolvedMethodDeclaration m1, ResolvedMethodDeclaration m2) Return if m2 is more specific than m1static MethodUsage
TypeInference.toMethodUsage
(MethodCallExpr call, ResolvedMethodDeclaration methodDeclaration, TypeSolver typeSolver)