Uses of Interface
com.github.javaparser.resolution.declarations.ResolvedValueDeclaration
-
-
Uses of ResolvedValueDeclaration in com.github.javaparser.ast.body
Methods in com.github.javaparser.ast.body that return ResolvedValueDeclaration Modifier and Type Method Description ResolvedValueDeclarationVariableDeclarator. resolve() -
Uses of ResolvedValueDeclaration in com.github.javaparser.ast.expr
Methods in com.github.javaparser.ast.expr that return ResolvedValueDeclaration Modifier and Type Method Description ResolvedValueDeclarationFieldAccessExpr. resolve()Attempts to resolve the declaration corresponding to the accessed field.ResolvedValueDeclarationNameExpr. resolve()Attempts to resolve the declaration corresponding to the accessed name. -
Uses of ResolvedValueDeclaration in com.github.javaparser.resolution
Methods in com.github.javaparser.resolution that return types with arguments of type ResolvedValueDeclaration Modifier and Type Method Description List<ResolvedValueDeclaration>SymbolDeclarator. getSymbolDeclarations()default SymbolReference<? extends ResolvedValueDeclaration>Context. solveSymbol(String name)Used where a symbol is being used (e.g. solvingxwhen used as an argumentdoubleThis(x), or calculationreturn x * 2;).SymbolReference<? extends ResolvedValueDeclaration>Solver. solveSymbol(String name, Node node)SymbolReference<? extends ResolvedValueDeclaration>Solver. solveSymbol(String name, Context context)default SymbolReference<? extends ResolvedValueDeclaration>Context. solveSymbolInParentContext(String name)SymbolReference<? extends ResolvedValueDeclaration>Solver. solveSymbolInType(ResolvedTypeDeclaration typeDeclaration, String name)Solve any possible visible symbols including: fields, internal types, type variables, the type itself or its containers. -
Uses of ResolvedValueDeclaration in com.github.javaparser.resolution.declarations
Subinterfaces of ResolvedValueDeclaration in com.github.javaparser.resolution.declarations Modifier and Type Interface Description interfaceResolvedAnnotationMemberDeclarationinterfaceResolvedEnumConstantDeclarationinterfaceResolvedFieldDeclarationDeclaration of a field.interfaceResolvedParameterDeclarationDeclaration of a parameter.interfaceResolvedTypePatternDeclarationDeclaration of a type pattern expression. -
Uses of ResolvedValueDeclaration in com.github.javaparser.resolution.model
Methods in com.github.javaparser.resolution.model with parameters of type ResolvedValueDeclaration Modifier and Type Method Description static ValueValue. from(ResolvedValueDeclaration decl)Create a Value from a ValueDeclaration.
-