Interface SymbolResolver
- All Known Implementing Classes:
JavaSymbolSolver
public interface SymbolResolver
-
Method Summary
Modifier and TypeMethodDescriptioncalculateType(Expression expression) For an expression it would find the corresponding resolved type.<T> TresolveDeclaration(Node node, Class<T> resultClass) For a reference it would find the corresponding declaration.<T> TtoResolvedType(Type javaparserType, Class<T> resultClass) For types it would find the corresponding resolved types.toTypeDeclaration(Node node) For a node it would find the corresponding reference type declaration.
-
Method Details
-
resolveDeclaration
-
toResolvedType
-
calculateType
For an expression it would find the corresponding resolved type. -
toTypeDeclaration
For a node it would find the corresponding reference type declaration.
-