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
Classes in com.github.javaparser.ast.expr that implement interfaces with type arguments of type MethodCallExprModifier and TypeClassDescriptionclassA method call on an object or a class.classA method call on an object or a class.classA method call on an object or a class.classA method call on an object or a class.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 TypeMethodDescriptionvoidExpression.ifMethodCallExpr(Consumer<MethodCallExpr> action) voidMethodCallExpr.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) voidNodeFinderVisitor.visit(MethodCallExpr n, Range arg) ObjectIdentityEqualsVisitor.visit(MethodCallExpr n, Visitable arg) ObjectIdentityHashCodeVisitor.visit(MethodCallExpr n, Void arg) voidVoidVisitor.visit(MethodCallExpr n, A arg) voidVoidVisitorAdapter.visit(MethodCallExpr n, A arg) voidVoidVisitorWithDefaults.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 TypeMethodDescriptionvoidDefaultPrettyPrinterVisitor.visit(MethodCallExpr n, Void arg) voidPrettyPrintVisitor.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 StringSourceFileInfoExtractor.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
Subclasses with type arguments of type MethodCallExpr in com.github.javaparser.symbolsolver.javaparsermodel.contextsConstructors in com.github.javaparser.symbolsolver.javaparsermodel.contexts with parameters of type MethodCallExprModifierConstructorDescriptionMethodCallExprContext(MethodCallExpr wrappedNode, TypeSolver typeSolver) Constructors -
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) Public instance methodsbooleanTypeInference.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.booleanTypeInference.moreSpecificMethodInference(MethodCallExpr methodCall, ResolvedMethodDeclaration m1, ResolvedMethodDeclaration m2) Return if m2 is more specific than m1static MethodUsageTypeInference.toMethodUsage(MethodCallExpr call, ResolvedMethodDeclaration methodDeclaration, TypeSolver typeSolver) Public static methods