Class LambdaExprContext

  • All Implemented Interfaces:
    Context

    public class LambdaExprContext
    extends AbstractJavaParserContext<com.github.javaparser.ast.expr.LambdaExpr>
    Author:
    Federico Tomassetti
    • Constructor Detail

      • LambdaExprContext

        public LambdaExprContext​(com.github.javaparser.ast.expr.LambdaExpr wrappedNode,
                                 com.github.javaparser.symbolsolver.model.resolution.TypeSolver typeSolver)
    • Method Detail

      • solveSymbolAsValue

        public Optional<com.github.javaparser.symbolsolver.model.resolution.Value> solveSymbolAsValue​(String name)
      • solveSymbol

        public com.github.javaparser.symbolsolver.model.resolution.SymbolReference<? extends com.github.javaparser.resolution.declarations.ResolvedValueDeclaration> solveSymbol​(String name)
      • solveType

        public com.github.javaparser.symbolsolver.model.resolution.SymbolReference<com.github.javaparser.resolution.declarations.ResolvedTypeDeclaration> solveType​(String name)
      • solveMethod

        public com.github.javaparser.symbolsolver.model.resolution.SymbolReference<com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration> solveMethod​(String name,
                                                                                                                                                                        List<com.github.javaparser.resolution.types.ResolvedType> argumentsTypes,
                                                                                                                                                                        boolean staticOnly)
        Description copied from interface: Context
        We find the method declaration which is the best match for the given name and list of typeParametersValues.
      • parametersExposedToChild

        public List<com.github.javaparser.ast.body.Parameter> parametersExposedToChild​(com.github.javaparser.ast.Node child)
        Description copied from interface: Context
        The parameters that are declared in this immediate context and made visible to a given child. This list could include values which are shadowed.