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 ResolvedValueDeclaration
VariableDeclarator. 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 ResolvedValueDeclaration
FieldAccessExpr. resolve()
Attempts to resolve the declaration corresponding to the accessed field.ResolvedValueDeclaration
NameExpr. 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. solvingx
when 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 interface
ResolvedAnnotationMemberDeclaration
interface
ResolvedEnumConstantDeclaration
interface
ResolvedFieldDeclaration
Declaration of a field.interface
ResolvedParameterDeclaration
Declaration of a parameter.interface
ResolvedTypePatternDeclaration
Declaration 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 Value
Value. from(ResolvedValueDeclaration decl)
Create a Value from a ValueDeclaration.
-